@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
 :root {
    --primary-color: #100d63;
    --secondary-color: #4463ee;
    --background-color: #D9D9D9;
    --accent-color: #7209b7;
    --highlight-gradient: linear-gradient(135deg, #4463ee, #3a0ca3);
    --icon-color: #0f0e14;
}

* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat';
}
.cpns_prc{
    padding-top:20px;
}

/*----------------------------------------------------------------------------------------------------------
                                          NAVBAR STARTS HERE
-------------------------------------------------------------------------------------------------------------*/


.navbar-wrapper {
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    background: rgba(15, 14, 20, 0.8);
    padding: 0px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: relative;
    transition: background 0.3s ease;
}

.navbar a {
    text-decoration: none;
}

.navbar.scrolled {
    background: rgba(15, 14, 20, 1);
}

.logo {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.logo2 {
    width: auto;
    height: 40px;
    object-fit: cover;
}

.watchhd {
    color: #ffffff;
    font-family: "Montserrat-Bold", sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

.Navmenu {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.Navmenu::-webkit-scrollbar {
    display: none;
}

.Navmenu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.navitems {
    color: white;
    text-decoration: none;
}

.navitems:visited {
    color: white;
}

.home, .news, .forum, .help, .btc {
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    transition: background 0.3s ease;
}

.home:hover, .news:hover, .forum:hover, .help:hover, .btc:hover,
.home.active, .news.active, .forum.active, .help.active, .btc.active {
    background: linear-gradient(0deg, rgba(79, 51, 239, 0) 0%, rgba(79, 51, 239, 1) 87.5%);
    height: 60px;
    align-items: center;
    justify-content: center;
}

.Signsbutt {
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-users {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
}

.Exit {
    cursor: pointer;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media screen and (max-width: 1024px) {
    .navbar {
        padding: 0px 10px;
    }

    .Navmenu {
        justify-content: flex-start;
    }

    .premium-users {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .Navmenu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(15, 14, 20, 0.95);
        flex-direction: column;
        align-items: center;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 15px;
        width: 100%;
    width: 100%;
    border-radius: 5px;
    margin-top: 0;
}

.checkout-form .pdkt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background: #000000dc;
    padding: 2%;
    border-radius: 20px;
    width: 100%; /* Changed from 60% */
    max-width: 400px; /* Added for larger screens */
    font-size: 1.2em; /* Adjusted for better scaling */
    margin: 0 auto 1em;
}

.checkout-form .input-group-btn {
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .checkout-form .input-group {
        flex-direction: column;
    }

    .checkout-form .input-group .col-md-7,
    .checkout-form .input-group .col-md-5,
    .checkout-form .input-group .col-md-4,
    .checkout-form .input-group .col-md-2,
    .checkout-form .input-group .col-md-1 {
        width: 100%;
        margin-bottom: 10px;
    }

    .checkout-form .input-group-btn {
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }
    
    .checkout-form .pdkt {
        width: 90%;
        font-size: 1em;
    }
}
        text-align: center;
    }
}

.Signsbutt .log {
    color: #4f33ef;
    font-weight: 500;
    background: #ffffff;
    font-size: 0.8rem;
}

.Friends-title {
    font-weight: 700;
    color: white;
    text-align: center;
    font-size: 2.1rem;
}

.Exit {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, padding 0.2s ease, border 0.2s ease;
    width: 30px;
}

.Exit:hover {
    transform: scale(0.9);
    padding-bottom: 3px;
    border-bottom: solid 2px #007bff;
}

.Signsbutt .sign {
    font-weight: 500;
    background: #4f33ef;
    color: #ffffff;
    font-size: 0.8rem;
}

.Signsbutt .sign:hover {
    border: 1px solid #4f33ef;
    background-color: #160a58;
    color: white;
}

.Signsbutt .log:hover {
    border: 1px solid #4f33ef;
    background-color: #160a58;
    color: white;
}

.language {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    position: relative;
}

#language-switcher {
    cursor: pointer
}

.vector {
    width: 8px;
    height: 5px;
}

.current-language {
    font-size: 16px;
    color: #ffffff;
}
.selectPaymentMethod.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.Flags {
    width: 23px;
    height: 23px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #15151b;
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
}
.dropdown-menu2 {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #15151b;
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
}

.language-option {
    display: flex;
    align-items: center;
    width: 110px;
    padding: 5px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.language-option img {
    margin-right: 10%;
    height: 20px;
    width: 20px;
}

.language-option:hover {
    border-radius: 50px;
    background-color: #4f33ef;
}

.hamburger-button {
    display: none;
    /* Hidden by default on larger screens */
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    /* Position it absolutely within the parent */
    left: 20px;
    /* Distance from the left edge of the parent */
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    /* Adjust for vertical centering */
}

.drawer {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #15151bf5;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 2;
}

.drawer-item {
    padding: 10px 20px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.account-settings-container-fluid {

    position: relative;
    height: 100vh;
}


.custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 40%;
}

.classy-multiline {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #f6f8fa 0%, #e9eef2 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.classy-multiline:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.classy-multiline input[type="checkbox"] {
    display: none;
}

.classy-multiline label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #007bff;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-custom::after {
    content: '\2714';
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.classy-multiline input[type="checkbox"]:checked+label .checkbox-custom {
    background-color: #007bff;
    border-color: #007bff;
}

.classy-multiline input[type="checkbox"]:checked+label .checkbox-custom::after {
    opacity: 1;
}

.label-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.premium-tag {
    display: inline-block;
    padding: 2px 8px;
    background-color: #ffd700;
    color: #333;
    font-size: 12px;
    border-radius: 20px;
    margin-left: 10px;
    text-transform: uppercase;
}
.premium-tag-payed {
    display: inline-block;
    padding: 2px 8px;
    background-color: #095c09;
    color: #ffffff;
    font-size: 12px;
    border-radius: 20px;
    margin-left: 10px;
    text-transform: uppercase;
}
.premium-tag-notpayed {
    display: inline-block;
    padding: 2px 8px;
    background-color: #bc242c;
    color: #ffffff;
    font-size: 12px;
    border-radius: 20px;
    margin-left: 10px;
    text-transform: uppercase;
}
.multiline-description {
    margin-left: 39px;
    font-size: 14px;
    color: #666;
}

.product-description {
    color: #4f33ef;
}

.buy-ste1-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    background: none;
}
.buy-step1-table{position: absolute;
    padding: 0 6rem;
    height: 100vh;
    width: 100%;
top: 10%;
left: 0;}

.package-centering-buy{
    position: absolute;
    width: 90%;
}

.buy-step1-packages {
    width: 100%;
    color: black;
    top: 10%;
}

.drawer-item a {
    text-decoration: none;
    color: white;
    font-size: 16px
}

.drawer-item a:visited {
    color: white;
}

.drawer-item:hover,
.drawer-item.active {
    background-color: #4f33ef;
}

@media (max-width:1300px) {
    .navitems a {
        font-size: 1rem
    }
}

@media (max-width:1100px) {
    .Navmenu,
    .Signsbutt {
        display: none;
    }
    .hide-on-small {
        display: none;
    }
    .hamburger-button {
        display: block;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .navbar {
        justify-content: space-between;
    }
    .language {
        position: absolute;
        right: 50px;
    }
}

/* Ticket notification badge */
.ticket-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: #ef3333;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: ticketBadgePulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes ticketBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/*----------------------------------------------------------------------------------------------------------
                                          NAVBAR ENDS HERE
-------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                          HOME STARTS HERE
-------------------------------------------------------------------------------------------------------------*/

.app-container {
    color: white;
    background-color: #0f0e14;
    min-height: 100vh;
}

.btn_hero {
    letter-spacing: 1px;
    width: 200px;
    height: 45px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease-in-out;
    background-color: #4f33ef;
    border: none;
    color: white;
}

.btn_hero a {
    text-decoration: none;
    color: white;
}

.btn_hero a:visited {
    color: white;
}

.btn_hero:hover {
    cursor: pointer;
    border: solid 1px #4f33ef;
    transform: scale(0.97);
    color: white;
    background-color: #271E59;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.26), 0px 0px 10px rgb(12, 19, 131), 0px 0px 40px rgb(17, 15, 158);
    border: 1px solid rgb(59, 75, 223);
}

.hero {
    z-index: 1;
    background-position: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    align-self: stretch;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    z-index: -1;
    opacity: 0;
    /* Default to hidden */
}

.hero__background.fade-in {
    opacity: 1;
}

.hero__background.fade-out {
    opacity: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 14, 20, 0) 9.5%, rgba(15, 14, 20, 0.53) 32.5%, rgba(15, 14, 20, 0.83) 58%, rgba(15, 14, 20, 1) 86.5%);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}


/* Header Styles */

.header {
    text-align: center;
    margin-bottom: 20px;
    /* Adjust as needed */
    padding: 0 10%;
}

.header-title {
    font-size: 2.5rem;
    /* 40px converted to rem */
    font-weight: bold;
    color: white;
    /* Adjust as needed */
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 1rem;
    /* 16px converted to rem */
    font-weight: 500;
    /* Medium weight */
    color: white;
    /* Adjust as needed */
    max-width: 700px;
    margin: 0 auto;
    /* Center the subtitle */
    line-height: 1.5;
}


/* Features Section */

.wrapper {
    padding: 1.5% 2.5%;
    height: 100vh;
    gap: 4vh;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

@media (max-width:500px) {
    .wrapper {
        padding: 10%;
    }
}

.alert-warning {
    background: rgba(165, 37, 37, 0.781);
    border: none;
    color: white;
}

.card {
    cursor: default;
    background-image: url(/assets/assets/img/Sports.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 380px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s ease-out;
}
.card1 {
    cursor: default;
    background-image: url(/assets/assets/img/imghome1.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 380px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s ease-out;
}.card2 {
    cursor: default;
    background-image: url(/assets/assets/img/imghome2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 380px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s ease-out;
}.card3 {
    cursor: default;
    background-image: url(/assets/assets/img/imghome3.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 380px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s ease-out;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between the buttons */
    margin-top: 20px;
    /* Space above the buttons */
}

.button-cancel {
    background: #ef6833;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 60px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    /* Remove default border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
    transition: background 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transitions */
}

.button-cancel:hover {
    background: #ff0606;
    /* Slightly darker shade on hover */
    transform: scale(1.05);
    /* Slightly enlarge on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    /* More pronounced shadow on hover */
}

.button-cancel:active {
    background: #f56607;
    /* Even darker shade on active */
    transform: scale(1);
    /* Reset scale on click */
}

.button-login,
.button-cancel {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.button-login {
    background-color: #4f33ef;
    color: white;
}

.button-login:hover {
    background-color: #160a58;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.26), 0px 0px 10px rgb(12, 19, 131), 0px 0px 40px rgb(17, 15, 158);
    border: 1px solid rgb(59, 75, 223);
}

.card:hover:before {
    opacity: 1;
}

.card:hover .info {
    opacity: 1;
    transform: translateY(0);
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgb(0, 0, 0, 0.9) 20%, rgb(5, 0, 24, 0.8) 70%, rgba(27, 5, 87, 0.397) 100%);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
}

.info {
    position: relative;
    z-index: 3;
    color: white;
    opacity: 0;
    text-align: center;
    padding: 1rem;
    transition: 0.4s ease;
    transform: translateY(15px);
    transition: 0.5s;
}

.info h1 {
    font-size: 20px;
    padding-top: 5vh;
    margin: 0;
}

.info p {
    letter-spacing: 1px;
    font-size: 14px;
    margin-top: 8px;
}

.card-icon {
    margin-top: 10vh;
}

.friend-settings-container-fluid2 {
    width: 100%;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}
.form-control-settings {
    border-radius: 5px;
    border: 1px solid #bdc3c7;
    padding:0  12px;
    transition: all 0.3s ease;
    width: 80%;
}

.mail-container-fluid{
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4f33ef;
    box-shadow: 0 0 20px #4f33ef;
    color: #4f33ef;
}
.friend-settings-container-fluid{
    background: white;
    width: 100%;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #4f33ef;
    box-shadow: 0 0 20px #4f33ef;
    margin-top: 3rem;

}
.f-settings-container-fluid {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    
}
/* Pricing Section */


/* Keyframes for slide-in and fade-in effects */

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Apply initial styles for the animation */

.pricing__content>* {
    opacity: 0;
    transform: translateX(-50px);
    /* Initial state for slide-in */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pricing {
    margin-top: 6%;
    background: url('/assets/assets/img/2ndhero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: left;
    /* Center text for better alignment */
    position: relative;
    z-index: 2;
    overflow: hidden;
    /* Prevent content overflow */
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.pricing__content {
    max-width: 100%;
    margin: 0 5%;
    padding: 0 10px;
    /* Add padding for smaller screens */
}

.pricing__title {
    font-size: 2rem;
    /* Adjust font size for better responsiveness */
    margin-bottom: 1rem;
}

.pricing__feature,
.pricing__price {
    font-size: 1.5rem;
    /* Adjust font size for better responsiveness */
    margin-bottom: 1rem;
}

.btn {
    margin-top: 2%;
    letter-spacing: 1px;
    height: 50px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    background-color: #4f33ef;
    border: none;
    color: white;
    font-size: 1rem;
    /* Adjust font size for better responsiveness */
}
.checkbox-custom:checked {
    pointer-events: none;
}

.btn a {
    text-decoration: none;
    color: white;
}

.btn a:visited {
    color: white;
}

.btn:hover {
    cursor: pointer;
    border: solid 1px #4f33ef;
    transform: scale(0.96);
    color: white;
    background-color: #271E59;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.26), 0px 0px 10px rgb(12, 19, 131), 0px 0px 40px rgb(17, 15, 158);
    border: 1px solid rgb(59, 75, 223);
}



.ticket-read-container{
    
    width: 100%;
    max-width: 1200px; /* Adjust this value based on your design needs */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
}

.ticket-details-container{
    font-style: italic;
    color: rgb(155, 155, 155);
    margin-top: 1rem;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: #4f33ef solid 1px;
    box-shadow: 0 0 20px #4f33ef;
    margin-bottom: 2rem;
}

.ticket-details-container strong{
    padding-left: 1rem;
    border-bottom: 1px solid #4f33ef;
font-size: 1.2rem;
    color:#4f33ef;
    font-weight: 700;
    display: flex;
    width: 100%;
    height: 100%;

}

.ticket-details-container p,.ticket-details-container q{
    color: black;
    font-weight: 500;
    margin-top: 1rem;
}

/* Container for the entire reply section */
.responding-text-area {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    position: sticky;
    bottom: 0;
    width: 90%;
}

/* Flex container for textarea and button */
.ticket-reading-text-area {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
}

/* Textarea styles */
.ticket-reading-textarea {
    flex-grow: 1;
    border: 1px solid #ced4da;
    border-radius: 20px;
    padding: 12px 15px;
    font-family: inherit;
    font-size: 16px;
    resize: none;
    min-height: 60px;
    transition: border-color 0.3s ease;
}

.ticket-reading-textarea:focus {
    outline: none;
    border-color: #4f33ef;
    box-shadow: 0 0 0 2px rgba(79, 51, 239, 0.2);
}

/* Button container */
.input-group-btn {
    display: flex;
}

/* Button styles */
.Main-btn-click {
    width: 100%;
    min-width: 120px;
    background-color: #4f33ef;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}
.dashboard-container {
    color: #ffffff;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.dashboard-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
.dashboard-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 20px;
}
.dashboard-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    color: #ffffff;
    width: 100%;
}
.dashboard-btn-primary {
    background-color: #ff0000;
}
.dashboard-btn-secondary {
    background-color: #486df1;
}
.dashboard-stats-grid {
    display: grid;
    gap: 20px;
    justify-content: center;
    max-width: 100%;
    width: 100%;
}
.dashboard-stat-card {
    background: linear-gradient(180deg, rgba(79, 51, 239, 0) 0%, rgba(79, 51, 239, 1) 100%),
        linear-gradient(to left, rgba(79, 51, 239, 0.4), rgba(79, 51, 239, 0.4));
    border-radius: 10px;
    border: 2px solid #4f33ef;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 145px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dashboard-stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(79, 51, 239, 0.5);
    border-color: rgba(79, 51, 239, 0.8);
}
.dashboard-stat-icon {
    width: 39px;
    height: 46px;
    margin-bottom: 10px;
}
.dashboard-stat-value {
    font-size: 16px;
    font-weight: 700;
}
.dashboard-stat-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}
/* Responsive adjustments */
@media (min-width: 576px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-btn {
        width: auto;
    }
}
@media (min-width: 768px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 992px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.eeyee{
    margin-top: 4px;
    background:#4f33ef ;
    width:40px; height:40px;
     border:solid 1px #4f33ef; 
     padding:0.2rem; 
     border-radius:5px;
     color:white;
    transition: background 0.2s ease;
    }

.eeyee:hover{
    background: white;
    color: #4f33ef;
}
.Main-btn-click:hover {
    text-decoration:none;
    background-color: #3d28b8;
    transform: translateY(-2px);
    color: white;
    
}
.Main-btn-click:visited{
    color: white;
    text-decoration: none;
}
.Main-btn-click:active {
    transform: translateY(0);
}
.step2-bg{
    background-color: #0f0e14;
    opacity: 0.8;
    z-index: -1;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;

}
.payment-btns{
    justify-content: center;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 5%;
    display: flex;
    height: 100%;
    flex-direction: column;
    background: rgb(79, 79, 79, 0.8);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .responding-text-area {
        padding: 10px;
    }

    .ticket-reading-text-area {
        flex-direction: column;
        align-items: stretch;
    }

    .ticket-reading-textarea {
        border-radius: 15px;
        font-size: 14px;
    }

    .input-group-btn {
        margin-top: 10px;
    }

    .Main-btn-click {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dropmenu-30-60-90{
        min-width: 70%;
    }
    .responding-text-area {
        padding: 8px;
    }

    .ticket-reading-textarea {
        min-height: 50px;
        font-size: 14px;
    }

    .Main-btn-click {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.main-tickets-container {
    width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
    .main-tickets-container {
        padding: 15px;
    }
}

@media screen and (max-width: 992px) {
    .main-tickets-container {
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    .main-tickets-container {
        padding: 10px 5px;
    }
}

@media screen and (max-width: 576px) {
    .main-tickets-container {
        position: absolute;
        top: 20%;
        left: 0;
    }
}



.dropmenu-30-60-90 {
    flex-grow: 1;
  width: 200px;
    height: 44px;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #4f33ef;
    border-radius: 5px;
    outline: none;
    appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
  }


  .dropmenu-30-60-90:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  }

  
.input-group{
    width: 40%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.dropmenu-btn{
font-weight: bold;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #4f33ef;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.dropmenu-btn:hover{
    background-color: #251679;

}

.Tickets-Searchbar {
    width: 100%;
    margin-bottom: 1.5rem;
  }


.Tickets-search-continer {
    display: flex;
    width: 100%;
  }


  .searchbar-input-ticket {
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
  }
  
  .searchbar {
    font-weight: bold;

    display: flex;
  }


  .table-tickets {
    margin-top: 4rem;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background-color: #fff;
    color: #333;
  }


  .table-tickets th{
    
  padding: 0.75rem;
  vertical-align: top;
  }
.table-tickets td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table-tickets thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  background-color: #4f33ef;
}

.table-tickets tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.btn-read-tickets {
    color: white;
    background-color: #4f33ef;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  .btn-delete-tickets {
    color: white;
    background-color: red;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  .btn-read-tickets:hover{
    border: solid 1px #4f33ef;
    color: #4f33ef;
    background-color: white;
  }

  .btn-delete-tickets:hover{
    border: solid 1px red;
    color: red;
    background-color: white;
  }

  .btn-delete-tickets:visited, .btn-read-tickets:visited {
    color: white;
}

.no-tickets-message {
    text-align: center;
    font-style: italic;
    color: white;
  }

@media screen and (max-width: 767px) {
    .table-tickets {
      border: 0;
    }
    
    .table-tickets caption {
      font-size: 1.3em;
    }
    
    .table-tickets thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    .table-tickets tr {
      border-bottom: 3px solid #ddd;
      display: block;
    }
    
    .table-tickets td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
      padding-left: 50%;
      position: relative;
    }
    
    .table-tickets td::before {
        color: #4f33ef;
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
      position: absolute;
      left: 0;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      border-right: solid 1px #8f8f8f;
    }
    
    .table-tickets td:last-child {
      border-bottom: 0;
    }

    
 
  }
  
/* Responsive Styles */

@media (max-width: 768px) {
    .hero {
        height: 20vh;
    }
    .pricing {
        background-position: center;
    }
    .pricing__title {
        font-size: 1.75rem;
        /* Adjust font size for smaller screens */
    }
    .pricing__feature,
    .pricing__price {
        font-size: 1.25rem;
        /* Adjust font size for smaller screens */
    }
    .btn {
        padding: 10px 20px;
        /* Adjust padding for smaller screens */
        font-size: 0.875rem;
        /* Adjust font size for smaller screens */
    }
    .benefits__title {
        font-size: 1.75rem;
    }
    .benefit-item__description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    


    
    .input-group {
        width: 60%;
        flex-direction: row;
        align-items: stretch;
        gap: 0.5rem;
      }

      .dropmenu-30-60-90 {
        max-width: 100%;
      }
      
    .searchbar-input-ticket,
  .Searchbutton {
    font-size: 14px;
  }

  .Searchbutton {
    padding: 10px 15px;
  }

  .col-md-3{
    padding: 10px;

  }
.package-centering-buy{
    position: absolute;
    left: 1rem;
    width: 90%;
    overflow-x: hidden;
}


    .pricing {
        background-position: center;
    }
    .pricing__title {
        font-size: 1.5rem;
        /* Adjust font size for very small screens */
    }
    .pricing__feature,
    .pricing__price {
        font-size: 1rem;
        /* Adjust font size for very small screens */
    }
    .btn {
        padding: 8px 16px;
        /* Adjust padding for very small screens */
        font-size: 0.75rem;
        /* Adjust font size for very small screens */
    }
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    .benefit-item__icon {
        margin-bottom: 1%;
    }
    .benefit-item__description {
        font-size: 0.8rem;
    }
}


/* Benefits Section */

.benefits {
    padding: 50px 20px;
}

.benefits__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
    /* Adjust color as needed */
}

.benefits__container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.benefits__column {
    flex: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    /* Start hidden */
    transition: opacity 0.5s ease-in-out;
    /* Smooth transition */
}

.benefit-item__icon {
    background-color: rgba(79, 51, 239, 0.2);
    border-radius: 50%;
    width: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.benefit-item__icon:hover {
    background-color: #4f33ef7e;
    transform: scale(0.9);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.26), 0px 0px 10px rgb(12, 19, 131), 0px 0px 40px rgb(17, 15, 158);
    border: 1px solid rgb(59, 75, 223);
}

.benefit-item__icon-img {
    width: 45px;
    height: 45px;
}

.benefit-item__description {
    font-size: 1.5rem;
}


/* Responsive Styles */

@media (max-width: 1024px) {
    .hero__title {
        font-size: 1.8rem
    }
    .hero {
        height: 80vh;
    }
    .benefits__container {
        flex-direction: column;
        align-items: center;
    }
    .benefits__column {
        width: 100%;
        max-width: none;
    }
}


/* Define the sliding animations */

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Apply the animations */

.slide-in-left {
    animation: slideInFromLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInFromRight 1s ease-out forwards;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .hero__title {
        font-size: 1.3rem
    }
    .hero__subtitle {
        font-size: 1.2rem;
    }
    .header-title {
        font-size: 1.3rem
    }
    .slide-in-left {
        animation: slideInFromLeft 0.8s ease-out forwards;
        /* Shorter duration for smaller screens */
    }
    .slide-in-right {
        animation: slideInFromRight 0.8s ease-out forwards;
        /* Shorter duration for smaller screens */
    }
}


/* payment options */

.payment-options {
    background-color: #0f0e14;
    padding: 40px 20px;
    text-align: center;
}

.payment-options h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.payment-method {
    background-color: rgba(79, 51, 239, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-method:hover {
    border: solid 1px #4f33ef;
    transform: translateY(-5px);
    box-shadow: 0px 0px 15px rgba(41, 3, 255, 0.952);
}

.payment-method img {
    max-width: 80px;
    max-height: 80px;
}

#coin img {
    margin-bottom: 10px;
}

.payment-method span {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

.paypal-note {
    color: #ffffff;
    font-size: 0.8rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }
    .payment-method {
        width: 120px;
        height: 120px;
    }
    .payment-method img {
        max-width: 60px;
        max-height: 60px;
    }
    .payment-options h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        /* 1 column for small screens */
    }
    .payment-method {
        width: 100px;
        height: 100px;
    }
    .payment-method img {
        max-width: 30px;
        max-height: 30px;
    }
    .payment-method span {
        font-size: 0.8rem;
    }
    .payment-options h2 {
        font-size: 1.2rem;
    }
    .benefits__column p {
        font-size: 0.8rem;
    }
}


/*   Infinite crrosel*/

.carousel {
    background-color: white;
    height: 40px;
    align-items: center;
    width: 100vw;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    width: calc(20% * 15);
    /* Adjust based on the number of images */
    animation: scroll 15s linear infinite;
}

.carousel-track img {
    margin: 5px 10px;
    padding: 0px 20px;
    height: 30px;
    width: 100%;
    /* Adjust based on the number of images */
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 100vw));
        /* Adjust this value */
    }
}

#scrollToTopBtn {
    z-index: +500;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #4f33ef;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    transition: opacity 0.2s, transform 0.1s ease-in-out;
    opacity: 0;
}

#scrollToTopBtn:hover {
    transform: scale(0.9);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.26), 0px 0px 10px rgb(12, 19, 131), 0px 0px 40px rgb(17, 15, 158);
    background-color: #271E59;
    border: #4f33ef solid 2px;
}

#scrollToTopBtn.show {
    opacity: 1;
}

.arrow_up::before {
    content: '';
    /* or use a specific icon font like FontAwesome if you have it */
}


/*----------------------------------------------------------------------------------------------------------
                                          HOME ENDS HERE
-------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                            NEWS STARTS HERE
  -------------------------------------------------------------------------------------------------------------*/

.heronews {
    line-height: 1.6;
    color: #0f0e14;
    height: 40vh;
    background-color: white
}

.heronews {
    background-image: url(/assets/assets/img/headers.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    gap: 1%;
    z-index: 0;
}

.news-logo {
    width: 60px;
    height: 60px;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
}

.heronews::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 2, 27, 0) 9.5%, rgba(6, 2, 24, 0.53) 32.5%, rgba(7, 2, 27, 0.83) 58%, rgb(4, 1, 14) 86.5%);
    z-index: -1;
}

@media (max-width: 1000px) {
    .heronews {
        height: 28vh;
    }
    .heronews h1 {
        font-size: 1.8rem;
    }
}

.newscontainerbg {
    height: 100vh;
    position: absolute;
    background-color: #593cce;
    z-index: 55;
}

.containernews {
    background-color: #efeef3;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.welcomingnews {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    margin: 3% auto;
    box-sizing: border-box;
    /* Ensure padding and border are included in width/height */
}
.welcomingnews-title {
    color: var(--text-color);
    text-align: center;
    font-size: 2em;
    /* Base font size */
    line-height: 130%;
    letter-spacing: -0.01em;
    font-weight: 600;
    height: auto;
    /* Allow height to adjust based on content */
    max-width: 90%;
    /* Ensure title doesn't stretch too wide */
}

.welcomingnews-subtitle {
    width: 70%;
    color: var(--text-color);
    text-align: center;
    font-size: 1.5em;
    /* Base font size */
    line-height: 130%;
    letter-spacing: -0.01em;
    font-weight: 400;
    height: auto;
    /* Allow height to adjust based on content */
    max-width: 90%;
    /* Ensure subtitle doesn't stretch too wide */
}

.newspage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.news-1 {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: var(--highlight-gradient);
    color: #fff;
}

.news-1:hover .titlenewss i,
.news-1:hover .titlenewss,
.news-1:hover .datenews,
.news-1:hover .contentnews,
.news-1:hover .content2news,
.news-1:hover .fa,
.news-1:hover .content-2-span2news {
    color: #fff;
}

.news-1:hover .datenews,
.news-1:hover .contentnews a {
    color: #c7c9d3;
    font-weight: 600;
}

.titlenewss {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.titlenewss i {
    margin-right: 10px;
    color: var(--primary-color);
}

.datenews {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.datenews i {
    margin-right: 5px;
    color: var(--primary-color);
}

.contentnews,
.content2news {
    font-size: 2em;
    color: var(--text-color);
    line-height: 1.8;
}

.content-2-span2news {
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .news {
        grid-template-columns: 1fr;
    }
    .welcomingnews-title {
        font-size: 1.25rem;
        width: 85%;
    }
    .welcomingnews-subtitle {
        font-size: 1rem;
    }
    .news-1 {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .welcomingnews-title {
        font-size: 1rem;
        /* Further adjust font size for very small screens */
    }
    .welcomingnews-subtitle {
        font-size: 0.85rem;
        /* Further adjust font size for very small screens */
        width: 90%;
        /* Increase width for very small screens */
    }
}


/*----------------------------------------------------------------------------------------------------------
                                            NEWS ENDS HERE
  -------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                            HELP STARTS HERE
  -------------------------------------------------------------------------------------------------------------*/

.herohelp {
    height: 40vh;
}

@media (max-width: 1000px) {
    .herohelp {
        height: 28vh;
    }
    .herohelp h1 {
        font-size: 1.8rem;
    }
}

.buy-container {
    position: absolute;
    top: 20%;
}

.news-container2 {
    position: absolute;
    top: 0;
    
}

.help-container2 {
    position: absolute;
    top: 0;
}

.herohelp {
    background-image: url(/assets/assets/img/headers.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    gap: 1%;
    z-index: 0;
}

.help-logo {
    width: 60px;
    height: 60px;
    z-index: +2;
}

.help-title {
    font-size: 48px;
    font-weight: 700;
}

.herohelp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 2, 27, 0) 9.5%, rgba(6, 2, 24, 0.53) 32.5%, rgba(7, 2, 27, 0.83) 58%, rgb(4, 1, 14) 86.5%);
    z-index: -1;
}

.containerhelp {
    max-width: 100%;
    padding: 20px;
    background: #efeef3;
}

.welcominghelp {
    width: 100vw;
    /* Use viewport width for a more responsive design */
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #efeef3;
    /* Ensure padding and border are included in width/height */
}

.welcominghelp-title {
    color: #0F0E14;
    text-align: center;
    font-size: 1.5rem;
    /* Base font size */
    line-height: 130%;
    letter-spacing: -0.01em;
    font-weight: 600;
    height: auto;
    /* Allow height to adjust based on content */
    max-width: 90%;
    /* Ensure title doesn't stretch too wide */
}

.welcominghelp-subtitle {
    width: 70%;
    color: #0F0E14;
    text-align: center;
    font-size: 0.99rem;
    /* Base font size */
    line-height: 130%;
    letter-spacing: -0.01em;
    font-weight: 400;
    height: auto;
    /* Allow height to adjust based on content */
    max-width: 90%;
    /* Ensure subtitle doesn't stretch too wide */
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .welcominghelp-title {
        font-size: 1.25rem;
        /* Adjust font size for smaller screens */
    }
    .welcominghelp-subtitle {
        font-size: 0.9rem;
        /* Adjust font size for smaller screens */
        width: 85%;
        /* Increase width for smaller screens */
    }
}

@media (max-width: 480px) {
    .welcominghelp-title {
        font-size: 1rem;
        /* Further adjust font size for very small screens */
    }
    .welcominghelp-subtitle {
        font-size: 0.85rem;
        /* Further adjust font size for very small screens */
        width: 90%;
        /* Increase width for very small screens */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.help-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.help-section:hover {
    transform: translateY(-5px);
}

.help-section h2 {
    background-color: #19133b;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.5rem;
    position: relative;
}

.help-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #4463ee;
}

.help-item {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.help-item:last-child {
    border-bottom: none;
}

.help-item:hover {
    background-color: #f9f9f9;
}

.help-toggle {
    display: none;
}

.help-question {
    color: #3032a8;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.help-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease;
    padding: 0 20px;
}

.help-answer p {
    font-weight: 450;
}

.help-answer a {
    text-decoration: none;
    color: #1d20ec
}

.help-toggle:checked+.help-question+.help-answer {
    max-height: 1000px;
    padding: 20px;
}

.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    cursor: pointer;
    padding-right: 5px;
}

.channel-list {
    max-height: none;
    overflow-y: visible;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background-color: #f9f9f9;
}

.channel-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Scrollbar Styles */

.channel-list::-webkit-scrollbar {
    width: 8px;
}

.channel-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.channel-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.channel-list::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


/*----------------------------------------------------------------------------------------------------------
                                            HELP ENDS HERE
  -------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                            SIGN IN STARTS HERE
  -------------------------------------------------------------------------------------------------------------*/

.login-container {
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
    z-index: 1;
}

html {
    font-size: 1rem;
}

.logocontainerlog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 50%;
    position: relative;
}

.logo-loginpage {
    flex-shrink: 0;
    width: 187px;
    height: 187px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
}

.welcomesign {
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    align-self: stretch;
}

.subtitlesign {
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.signinputs {
    margin-top: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 50%;
}

.input-username,
.input-password {
    font-size: 1rem;
    background: #d9d9d9;
    border-radius: 10px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    width: 90%;
    height: 55px;
    max-width: 70%;
    min-width: 70%;
    border: 2px solid transparent;
    /* Transparent border initially */
    transition: border 0.3s ease, filter 0.2s ease;
    /* Smooth transitions */
}

.input-username:hover,
.input-password:hover,
.input-username:focus,
.input-password:focus {
    border: 2px solid #4f33ef;
    /* Blue border on hover/focus */
    filter: brightness(1.1);
    /* Slightly brighten the input */
    outline: none;
    /* Remove default outline */
}

.captcha {
    background-color: white;
    padding: 5px;
}

.checkbox {
    width: 24px;
    height: 24px;
}

.i-m-not-a-robot {
    font-size: 14px;
    font-weight: 500;
}

.forgot-password {
    text-decoration: none;
    color: #5b62ff;
    font-size: 1rem;
    font-weight: 500;
}

.button-login {
    background: #4f33ef;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 60px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    /* Remove default border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
    transition: background 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transitions */
}

.button-login:hover {
    background: #1d20ec;
    /* Slightly darker shade on hover */
    transform: scale(1.05);
    /* Slightly enlarge on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    /* More pronounced shadow on hover */
}

.button-login:active {
    background: #3a27a0;
    /* Even darker shade on active */
    transform: scale(1);
    /* Reset scale on click */
}

@media (max-width: 900px) {
    .signinputs {
        width: 100%;
        padding: 20px;
        margin-bottom: 10%;
        /* Optional: add padding for better spacing */
    }
    .input-username,
    .input-password,
    .captcha {
        max-width: 100%;
        /* Ensure input fields take up full width */
    }
    .logocontainerlog {
        width: 90%;
        margin-top: 15%;
    }
    .logo-loginpage {
        margin-top: 2%;
        height: 90px;
        width: 90px;
    }
    .welcomesign {
        margin-top: 5%;
        margin-bottom: 2%;
        font-size: 1.9rem
    }
    .subtitlesign {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-loginpage {
        height: 100px;
        width: 100px;
    }
    .welcomesign {
        margin-top: 10%;
        margin-bottom: 2%;
        font-size: 1.4rem
    }
    .logocontainerlog {
        width: 90%;
    }
    .subtitlesign {
        font-size: 0.9rem;
    }
    .button-login {
        width: 80%
    }
}


/*----------------------------------------------------------------------------------------------------------
                                            SIGN IN ENDS HERE
  -------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                            FOOTER STARTS HERE
  -------------------------------------------------------------------------------------------------------------*/

.footer {
    background-color: #0f0e14;
    padding: 20px;
    padding-top: 6%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 32px;
    margin-right: 8px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #4f33ef;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    width: 100%;
    margin: 20px 0;
}

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #d6d6d6;
}

.footerlogolink {
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.footerlogolink:hover {
    transform: scale(0.98);
}


/* Responsive design */

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        align-items: center;
    }
    .footer-logo {
        margin-bottom: 0;
    }
    .footer-links {
        margin-bottom: 0;
    }
}


/*----------------------------------------------------------------------------------------------------------
                                          FOOTER ENDS HERE
-------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                      Custom scrollbar
-------------------------------------------------------------------------------------------------------------*/


/* Custom scrollbar for WebKit browsers */

 ::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

 ::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background of the track */
}

 ::-webkit-scrollbar-thumb {
    background: #4f33ef;
    /* Color of the scrollbar thumb */
    border-radius: 8px;
    /* Rounded corners for the thumb */
}

 ::-webkit-scrollbar-thumb:hover {
    background: #3c2db6;
    /* Darker color when hovered */
}


/* Custom scrollbar for WebKit browsers */

 ::-webkit-scrollbar {
    width: 12px;
}

 ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

 ::-webkit-scrollbar-thumb {
    background: #4f33ef;
    border-radius: 8px;
}

 ::-webkit-scrollbar-thumb:hover {
    background: #3c2db6;
}


/* Custom scrollbar for Firefox */

html {
    scrollbar-width: thin;
    scrollbar-color: #4f33ef #f1f1f1;
}


/*----------------------------------------------------------------------------------------------------------
                                      Custom scrollbar  
-------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                            NOTIFICATION STARTS HERE
  -------------------------------------------------------------------------------------------------------------*/


/* Base styles */

#notification-container {
    position: fixed;
    bottom: 2%;
    /* Positions notifications at the bottom of the page */
    right: 2%;
    max-width: 400px;
    /* Adjust width for better fit on smaller screens */
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 1000;
}

.btn-modal-acc {
    background-color: red;
}

.notification {
    border-radius: 10px;
    background: linear-gradient(-90deg, rgba(245, 167, 21, 0.938) 40%, rgba(255, 230, 0, 0.932) 120%);
    color: #000000;
    /* Dark text for better readability */
    padding: 15px;
    padding-right: 20px;
    margin-bottom: 10px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.315);
    /* Light shadow for depth */
    font-size: 0.8rem;
    /* Standard font size */
    font-weight: 600;
}

.notification:nth-child(2) {
    background: linear-gradient(-90deg, rgba(245, 167, 21, 0.938) 40%, rgba(255, 230, 0, 0.932) 120%);
    color: #000000;
    /* Keep text color consistent */
}

.notification strong {
    text-decoration: underline
}


/* Responsive styles */

@media (max-width: 768px) {
    #notification-container {
        right: 1%;
        bottom: 1%;
        max-width: 100%;
        /* Adjust container width */
    }
    .notification {
        padding: 12px;
        font-size: 13px;
        /* Slightly smaller font size */
    }
    .notification:nth-child(2) {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    #notification-container {
        right: 1%;
        bottom: 1%;
        max-width: 100%;
        padding: 0 5px;
        /* Reduced padding */
    }
    .notification {
        padding: 10px;
        font-size: 12px;
        /* Further reduced font size */
    }
    .notification:nth-child(2) {
        padding: 10px;
    }
}


/*----------------------------------------------------------------------------------------------------------
                                          NOTIFICATION ENDS HERE
-------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------
                                          ACCOUNT SETTINGS STARTS HERE
-------------------------------------------------------------------------------------------------------------*/


/* Account Settings Styles */

.backgroundaccount {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/assets/img/img110.png) center/cover no-repeat;
    z-index: -3;
}

.account-settings-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 80px 20px 20px;
    /* Adjusted top padding to account for navbar */
    box-sizing: border-box;
}

.settings-panel {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 700px;
    margin-bottom: 40px;
    box-shadow: 0px 0px 20px #1d20ec;
}

.settings-title {
    color: #4463ee;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.form-groupsett {
    margin-bottom: 1.5rem;
}

.form-groupsett label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-inputsett {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-inputsett:focus {
    outline: none;
    border-color: #4463ee;
    box-shadow: 0 0 0 3px rgba(68, 99, 238, 0.1);
}

.email-groupsett {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.email-groupsett .form-inputsett {
    flex-grow: 1;
}

.form-actionssett {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btnsett {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.btn-primarysett {
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem;
    border: none;
    background-color: #4f33ef;
    color: white;
    width: 100%;
    max-width: 100%;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.Package-selection-btn {
    font-weight: 600;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #4f33ef;
    background-color: white;
    color: #4f33ef;
    width: 100%;
    max-width: 250px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(79, 51, 239, 0.1);
}

.Package-selection-btn::before {
    content: "📦";
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.Package-selection-btn::after {
    content: attr(for);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.Package-selection-btn:hover {
    background-color: #4f33ef;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(79, 51, 239, 0.2);
}


/* Focus effect */

.Package-selection-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 51, 239, 0.5);
}

input[type="radio"]:checked+.Package-selection-btn {
    background-color: #4f33ef;
    color: white;
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(79, 51, 239, 0.2);
}

.mirrors-btns-acc {
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem;
    border: none;
    background-color: #4f33ef;
    color: white;
    width: 100%;
    max-width: 250px;
    text-align: center;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
    text-decoration: none;
}

.mirrors-btns-acc:hover {
    background-color: #1c0f64;
    text-decoration: none;
}

.options-btn-acc a:visited {
    text-decoration: none;
    color: white;
}

.options-btn-acc {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    /* Add spacing between buttons */
}

.btn-primarysett:hover {
    background-color: white;
    color: #4f33ef;
    border: solid 1px #4f33ef;
    transform: scale(0.98);
}

.btn-primarysett .button-icon {
    fill: white;
    width: 16px;
    height: 16px;
}

.btn-secondarysett {
    background-color: transparent;
    border: 1px solid #4f33ef;
    color: #4f33ef;
}

.btn-secondarysett:hover {
    background-color: rgba(79, 51, 239, 0.1);
}

.btn-secondarysett .button-icon {
    fill: #4f33ef;
}

.backtoaccount {
    border-radius: 5px;
    background-color: #c7c9d336;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    color: #5b62ff;
    padding: 1%;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .account-settings-container {
        padding-top: 100px;
        /* Increased top padding for smaller screens */
    }
    .settings-panel {
        padding: 2rem;
    }
    .form-actionssett {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .btnsett {
        width: 100%;
    }
    .options-btn-acc {
        flex-direction: column;
        /* Buttons will be aligned in a row on larger screens */
        flex-wrap: wrap;
    }
    .btn-primarysett {
        width: 200px;
        /* Fixed width on larger screens */
    }
}



@media (max-width: 480px) {
    .account-settings-container {
        padding-top: 120px;
        /* Further increased top padding for very small screens */
    }
    
    .settings-panel {
        padding: 1.5rem;
    }
    
    .settings-title {
        font-size: 1.75rem;
    }
    
    .email-groupsett {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/*----------------------------------------------------------------------------------------------------------
                                          ACCOUNT SETTINGS ENDS HERE
-------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------
                                          ACCOUNT STARTS HERE
-------------------------------------------------------------------------------------------------------------*/
.accountholder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 3% 0;
}

/* Account info styles */
.account-info {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 0px 20px #1d20ec;
    padding: 30px;
    margin: 50px 50px;
    width: 90%;
}
.info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.info-row a {
    margin-left: 35%;
}
.info-row:last-child {
    border-bottom: none;
}
.info-label {
    font-weight: 600;
    color: #4a4a4a;
    flex-basis: 30%;
    margin-right: 20px;
    flex-wrap: wrap;
}
.info-value {
    flex-basis: 65%;
    word-break: break-word;
}

/* Button styles */
.button {
    background-color: #4f33ef;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    margin: 5px;
}
.button:hover {
    background-color: #3a20c5;
}
.button.secondary {
    width: 200px;
    background-color: #ffffff;
    color: #4f33ef;
    border: 2px solid #4f33ef;
}
.button.secondary:hover {
    background-color: #f0f0ff;
}

/* Tab buttons */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.tab-button {
    padding: 12px 24px;
    border: 2px solid #6f62bc;
    background-color: #ffffff;
    color: #6f62bc;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.tab-button.active {
    background-color: #4f33ef;
    color: #ffffff;
    border-color: #4f33ef;
}
.tab-button:hover:not(.active) {
    background-color: #f0f0ff;
}

/* Link button */
.link-button {
    text-align: center;
    border-radius: 5px;
    border: solid 1px #4f33ef;
    padding: 1%;
    color: #4f33ef;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}
.link-button:hover {
    background-color: #4f33ef;
    color: white;
    text-decoration: underline;
}

/* Purchases section */
.purchases {
    margin-top: 40px;
}
.purchases h2 {
    color: #4a4a4a;
    margin-bottom: 20px;
}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
.intro-text{
    color: white;
}
th {
    background-color: #4f33ef;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}
tr:last-child td {
    border-bottom: none;
}
tr:hover {
    background-color: #f8f8f8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.page-link {
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #4f33ef;
    text-decoration: none;
    color: #4f33ef;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.page-link.active,
.page-link:hover {
    background-color: #4f33ef;
    color: #ffffff;
}

/* Subscription status */
.status-text.expired {
    color: red;
}
.status-text.paid {
    color: green;
}

/* Responsive design */
@media (max-width: 930px) {
    .info-row a {
        margin-left: 26%;
    }
}
@media screen and (max-width: 768px) {
    .account-info {
        padding: 20px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-row a {
        width: 90%;
        margin-left: 0;
    }
    
    .info-label,
    .info-value {
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .button {
        width: 100%;
        margin: 5px 0;
    }
    
    table {
        font-size: 0.9em;
    }
    
    th,
    td {
        padding: 10px;
    }
}
@media screen and (max-width: 480px) {
    .account-info {
        padding: 15px;
    }
    
    .purchases h2 {
        font-size: 1.5em;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .page-link {
        margin: 5px;
    }
}


/*----------------------------------------------------------------------------------------------------------
                                          ACCOUNT ENDS HERE
-------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------
                                          PACKAGE STARTS HERE
-------------------------------------------------------------------------------------------------------------*/
.fullpackagecontainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 32.74%, rgba(0, 0, 0, 1) 85.80%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(79, 51, 239, 0.2) 100%), #0f0e14;
    z-index: -1;
}
.package-container {
    top: 10%;
    left: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
    width: 100%;
}
.package-header {
    text-align: center;
    margin-bottom: 2rem;
}
.package-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.package-subtitle,
.package-info {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    margin: 0.25rem 0;
}
.package-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}
.package-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #4f33ef;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.333% - 2rem);
    min-width: 250px;
    box-shadow: 0 0 15px rgba(79, 51, 239, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(79, 51, 239, 0.8);
}
.package-duration {
    color: #4f33ef;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.package-price {
    color: #4f33ef;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0.5rem 0;
}
.package-divider {
    border: none;
    border-top: 1px solid #e1e1e1;
    width: 100%;
    margin: 0.75rem 0;
}
.package-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0.5rem 0;
}
.package-description {
    color: #000000;
    font-size: 0.875rem;
    text-align: center;
    margin: 0.75rem 0;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-button {
    background: #4f33ef;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.package-button:hover {
    background-color: #ffffff;
    color: #4f33ef;
    border: 1px solid #4f33ef;
}
@media (max-width: 1024px) {
    .package-card {
        width: calc(50% - 2rem);
    }
}
@media (max-width: 768px) {
    .package-container {
        padding: 1rem;
    }
    
    .package-options {
        gap: 1.5rem;
    }
    
    .package-card {
        width: 100%;
        max-width: 350px;
    }
}
@media (max-width: 480px) {
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-subtitle,
    .package-info {
        font-size: 0.875rem;
    }
    
    .package-card {
        padding: 1rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
}

/*----------------------------------------------------------------------------------------------------------
                                          PACKAGE ENDS HERE
-------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------
                                          MYPACKAGE STARS HERE
-------------------------------------------------------------------------------------------------------------*/
.package-user-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    height: 100vh;
}

/* Header styles */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}
.page-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: 10%;
}
.page-subtitle {
    color: white;
    font-size: 1rem;
    opacity: 0.8;
}

/* Table styles */
.package-table {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.table-header {
    background-color: #4f33ef;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
}
.table-title {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}
.table-body {
    color: #000000;
}
.package-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #cbcbcb;
}
.package-row:last-child {
    border-bottom: none;
}
.package-info {
    display: flex;
    flex-direction: column;
}
.package-name {
    font-weight: 500;
    margin-bottom: 5px;
}
.package-expiry {
    font-size: 0.9rem;
    color: #ff0000;
}

/* Toggle switch styles */
.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked+.slider {
    background-color: #4f33ef;
}
input:checked+.slider:before {
    transform: translateX(26px);
}

/* Footer styles */
.page-footer {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}
.btnpackage {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.2s ease-in-out;
}
.btn-primarypackage {
    background-color: #4f33ef;
    color: #ffffff;
    border: none;
}
.btn-secondarypackage {
    background-color: #ffffff;
    color: #4f33ef;
    border: 1px solid #4f33ef;
    transition: background-color 0.2s, color 0.2s, transform 0.2s ease-in-out, border 0.2s;
}
.btn-secondarypackage:hover {
    color: red;
    border: 1px solid red;
    transform: scale(0.98);
    box-shadow: 0px 0px 5px red;
}
.btn-primarypackage:hover {
    background-color: #2f18b4;
    transform: scale(0.98);
}

/* Responsive styles */
@media (max-width: 600px) {
    .package-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .toggle {
        margin-top: 10px;
    }
    
    .page-footer {
        flex-direction: column;
    }
    
    .btnpackage {
        margin-top: 3%;
        width: 100%;
    }
}

/*----------------------------------------------------------------------------------------------------------
                                          MYPACKAGE ENDS HERE
-------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------
                                          LANDINGPAGE STARTS HERE
-------------------------------------------------------------------------------------------------------------*/
.welcome-container {
    background-size: cover;
    background-position: center;
    padding: 2rem;
    min-height: 100vh;
    margin: 0 auto;;

}
.welcome-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1%;
    margin-top: 0.9rem;
}
.welcome-title h1 {
    margin-top: 5%;
    margin-bottom: 5%;
}
.welcome-title p {
    margin-bottom: 4%;
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}
.option-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4f33ef, #8067f0);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.option-card:hover::before {
    opacity: 1;
}
.option-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 20px rgb(15, 39, 252);
}
.option-card h3 {
    margin-top: 1rem;
    color: #4f33ef;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}
.option-card:hover h3 {
    color: #ffffff;
}
.option-card p {
    color: #666;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}
.option-card:hover p {
    color: #ffffff;
}
.option-card::after {
    content: '→';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #4f33ef;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}
.option-card:hover::after {
    opacity: 1;
    color: #ffffff;
    transform: translateX(5px);
}
.option-card svg {
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.option-card:hover svg path {
    fill: #ffffff;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.animated-card:nth-child(1) {
    animation-delay: 0.1s;
}
.animated-card:nth-child(2) {
    animation-delay: 0.2s;
}
.animated-card:nth-child(3) {
    animation-delay: 0.3s;
}
.animated-card:nth-child(4) {
    animation-delay: 0.4s;
}
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-title {
        color: #ffffff;
        text-align: center;
        margin-bottom: 1%;
        margin-top: 2rem
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.animated-card:nth-child(1) {
    animation-delay: 0.1s;
}
.animated-card:nth-child(2) {
    animation-delay: 0.2s;
}
.animated-card:nth-child(3) {
    animation-delay: 0.3s;
}
.animated-card:nth-child(4) {
    animation-delay: 0.4s;
}

/*----------------------------------------------------------------------------------------------------------
                                          LANDINGPAGE ENDS HERE
-------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------
                                          PAYMENT METHODS STARTS HERE
-------------------------------------------------------------------------------------------------------------*/
#usernameData {
    font-weight: 700;
}
.paymentmethodsbgcolor {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #1a18258a, #0f0e14);
    z-index: -2;
}
.pm-section {
    margin-top: 5%;
    color: white;
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pm-container {
    max-width: 90%;
    width: 100%;
}
.pm-header {
    text-align: center;
    margin-bottom: 40px;
}
.pm-heading-main {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    animation: pmFadeInDown 0.4s ease forwards;
}
.pm-instructions {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0;
    animation: pmFadeIn 0.3s ease 0.3s forwards;
}
.pm-crypto-warning .pm-highlight {
    color: #ef3333;
    /* Highlight color */
    
    font-weight: 700;
    /* Make the highlighted text bolder for emphasis */
    
    background-color: rgba(249, 248, 255, 0.67);
    /* Subtle background for extra visibility */
    
    padding: 2px 6px;
    /* Adds space around the text */
    
    border-radius: 4px;
    /* Rounded corners for a modern look */
    
    display: inline-block;
    /* Ensures background adjusts to the text */
    
    transition: background-color 0.3s ease;
}
.pm-crypto-warning .pm-highlight:hover {
    color: white;
    background-color: rgba(79, 51, 239, 0.749);
    /* Slightly lighter on hover */
}
.pm-crypto-warning a {
    color: white;
    /* Highlight color */
    
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #ef3333;
}
.pm-crypto-warning a:hover {
    border-bottom: 1px solid #007bff;
}
.pm-options {
    width: 100%;
    margin-bottom: 60px;
    opacity: 0;
    animation: pmFadeIn 0.3s ease 0.5s forwards;
}
.important-note {
    background-color: #e7f4ff;
    /* Light, friendly blue background */
    
    border-left: 5px solid #007bff;
    /* Accent color for emphasis */
    
    color: #004085;
    /* Darker text for readability */
    
    font-weight: 500;
    /* Semi-bold to make it noticeable without being too heavy */
    
    padding: 12px 20px;
    /* Spacing inside the box */
    
    font-size: 1rem;
    /* Standard readable font size */
    
    border-radius: 8px;
    /* Softer rounded corners for a friendly look */
    
    margin-top: 20px;
    /* Space between the title and the note */
    
    display: flex;
    align-items: center;
    gap: 12px;
    /* Space for the icon */
}
.important-note::before {
    content: "ℹ️";
    /* Information icon for a friendly visual cue */
    
    font-size: 1.3rem;
    /* Slightly larger than the text */
    
    color: #007bff;
    /* Same color as the border */
}
.pm-options h2 {
    margin-bottom: 10px;
    /* Reduced space between title and the note */
}
.pm-option-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.pm-option-grid {
    width: 100%;
    margin-top: 2%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}
.pm-option-card {
    border: solid 1px #4f33ef;
    background: rgba(79, 51, 239, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.pm-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(79, 51, 239, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pm-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(6, 40, 160, 0.946);
}
.pm-option-card:hover::before {
    opacity: 1;
}
.pm-option-card[style*="display: none"] {
    display: none !important;
}
.pm-option-icon {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.pm-option-card:hover .pm-option-icon {
    transform: scale(1.1);
}
.pm-option-name {
    font-size: 1.2rem;
    font-weight: 400;
}
.pm-crypto-warning {
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle, transparent white for contrast */
    
    border-left: 4px solid #ff6666;
    /* Bold, red border for emphasis */
    
    color: white;
    /* Lighter red for text */
    
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 1rem;
    /* Increased font size for readability on dark background */
    
    font-weight: 400;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.pm-crypto-warning:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* More visible hover effect */
    
    transform: translateY(-3px);
    /* Subtle lift on hover for better interactivity */
}
#voucher-options {
    margin-top: 2%;
}
.pm-frame-card {
    text-align: center;
    width: 250px;
    background-color: #486df1;
    /* Keep the button background color */
    
    border-radius: 25px;
    padding: 10px 20px;
    /* Adjusted padding for better spacing */
    
    display: flex;
    align-items: center;
    /* Centers the icon and text vertically */
    
    gap: 20px;
    /* Space between the icon and text */
    
    flex-shrink: 0;
    height: 45px;
    /* Slightly larger height for better visibility */
    
    position: relative;
    transition: transform 0.3s ease;
    /* Smooth hover effect */
    
    cursor: pointer;
    /* Indicates it's clickable */
}
.pm-frame-card:hover {
    background-color: #102983;
    transform: translateY(-5px);
    border: solid 1px #486df1;
}
.pm-option-vouchers {
    width: 30px;
    /* Slightly larger icon size for better visibility */
    
    height: 30px;
    /* Consistent icon size */
}
.pm-option-voucherbuttons {
    color: #ffffff;
    /* White text for contrast */
    
    font-size: 1rem;
    /* Reduced font size for a better fit */
    
    text-align: left;
    /* Align text to the left of the icon */
}
.pm-option-grid {
    display: flex;
    flex-wrap: wrap;
    /* Ensures the layout adjusts responsively */
    
    gap: 15px;
    /* Space between the cards */
    
    justify-content: center;
    /* Centers the cards */
}
@keyframes pmFadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pmFadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    #voucher-options {
        margin-top: 3%;
    }
    
    .pm-heading-main {
        font-size: 2rem;
    }
    
    .pm-option-title {
        font-size: 1.5rem;
    }
    
    .pm-option-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .pm-frame-card {
        height: 50px;
        /* Adjust height for smaller screens */
        padding: 8px 15px;
        /* Smaller padding for compact design */
    }
    
    .pm-option-voucherbuttons {
        font-size: 16px;
        /* Slightly smaller text for mobile */
    }
    
    .pm-option-vouchers {
        width: 25px;
        /* Smaller icon for mobile */
        height: 25px;
    }
}
@media (max-width: 480px) {
    .pm-heading-main {
        font-size: 1.8rem;
    }
    
    .pm-option-title {
        font-size: 1.3rem;
    }
    
    .pm-option-grid {
        flex-direction: column;
    }
    
    .pm-option-card {
        padding: 15px;
    }
    
    .pm-option-icon {
        width: 40px;
        height: 40px;
    }
    
    .pm-option-name {
        font-size: 1rem;
    }
    
    .pm-frame-card {
        width: 200px;
        flex-direction: row;
        /* Ensure row layout on small screens */
        padding: 6px 20px;
        /* Reduce padding for smaller screens */
        gap: 20px;
        /* Smaller gap between icon and text */
    }
    
    .pm-option-voucherbuttons {
        font-size: 14px;
        /* Even smaller font size for compact design */
    }
    
    .pm-option-vouchers {
        width: 20px;
        /* Adjust icon size for smaller screens */
        height: 20px;
    }
    
    .accountfull-table {
        padding: 0 2%;
        width: 100%;
        margin-bottom: 2%;
    }
}

/*----------------------------------------------------------------------------------------------------------
                                          PAYMENT METHODS ENDS HERE
-------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------
                                          PAYMENT STARTS HERE
-------------------------------------------------------------------------------------------------------------*/
.payment-container {
    max-width: 600px;
    margin: 8% auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}
.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}
.payment-header h1 {
    color: #486df1;
    margin-bottom: 0.5rem;
}
.transaction-id {
    font-size: 0.9rem;
    color: #666;
}
.payment-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.amount-section,
.address-section,
.qr-section,
.instructions {
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1rem;
}
.crypto-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #486df1;
}
.wallet-address {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.5rem;
    font-family: monospace;
    word-break: break-all;
}
.copy-btn,
.confirm-btn {
    background-color: #486df1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.copy-btn:hover,
.confirm-btn:hover {
    background-color: #3a5cd0;
}
.copy-btn {
    margin-top: 0.5rem;
}
#qrCode {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.instructions p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.payment-footer {
    margin-top: 2rem;
    text-align: center;
}
.confirm-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}
@media (max-width: 768px) {
    .payment-container {
        margin: 1rem;
        padding: 1rem;
    }
}
.table-account {
    width: 90vw;
}

/*----------------------------------------------------------------------------------------------------------
                                          PAYMENT ENDS HERE
-------------------------------------------------------------------------------------------------------------*/


