.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 108px;
    color: white;
    background: linear-gradient(90.64deg, #1C1D2C 1.63%, #181C3E 99.76%);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
}

.header-logo {
    margin-left: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo :first-child {
    padding: 0 1vw;
    width: 2vw;
    cursor: pointer;
}

.header-logo .user-mobile-show.menu-toggle-icon {
    padding: 0 1vw;
    width: 2vw;
    cursor: pointer;
}

.header-logo :last-child {
    height: 9vh;
}

.user-mobile-show {
    /* this only shows when mobile mode */
    display: none;
}

/* Tablet and below (width < 1024px) */
@media only screen and (max-width: 1023px) {
    .user-mobile-show {
        display: block;
    }
    
    .header-logo .user-mobile-show.menu-toggle-icon {
        padding: 0 1vw;
        width: 2vw;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle-icon {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    .menu-toggle-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .menu-close-icon {
        font-size: 2.5vw;
        font-weight: bold;
        color: white;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hide sign out button when authenticated on tablet and below */
    /* Target btn_login that is a direct child of header (sign out button) */
    .header > .btn_login {
        display: none;
    }
    
    /* Also hide UserInfo in header on tablet and below when authenticated */
    .header > .user-info {
        display: none;
    }
}

/* Tablet range (600px < width < 1024px) - Hide FaCircleUser SVG */
@media only screen and (min-width: 601px) and (max-width: 1023px) {
    .header-logo svg.user-mobile-show {
        display: none;
    }
}

.header-logo img{
    cursor: pointer;
}

.user-sign {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.user-name,
.user-password {
    display: flex;
    align-items: center;
}

.user-sign input {
    margin: 0.8vw;
    height: 4vh;
    max-width: 10vw;
    padding: 0.3vh 0.8vw;
    font-size: 13px;
    border-radius: 0.5vw;
    outline: none;
    border: none;
}

.user-sign-btn {
    width: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove this - conflicting with btn_login span */
/* .user-sign-btn span {
    cursor: default;
    position: relative;
    display: block;
    background: linear-gradient(93.67deg, #007AFF 2.87%, #00F0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-radius: 15px;
    height: 40%;
} */

.btn_login {
    width: 8vw;
    padding: 0.5vw;
    margin: 1vh 0.3vw;
    position: relative;
    background: linear-gradient(90.64deg, #1C1D2C 1.63%, #181C3E 99.76%);
    border-radius: 0.55vw;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Thicker, more visible border using ::before pseudo-element */
.btn_login::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(93.67deg, #007AFF 2.87%, #00F0FF 100%);
    border-radius: calc(0.55vw + 2px);
    z-index: -1;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    opacity: 1;
}

/* Ensure span text is visible and positioned correctly - Always visible initial state */
.btn_login > span {
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.3s ease, -webkit-text-fill-color 0.3s ease;
    /* Initial state - solid white color for guaranteed visibility against dark background */
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    font-weight: 500;
    font-size: inherit;
    line-height: 1.2;
    /* Ensure text is always visible */
    text-rendering: optimizeLegibility;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Loading state - ensure text stays white and visible */
.btn_login.loading span {
    background: white;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

/* Smooth gradient transition on hover */
.btn_login:hover {
    background: linear-gradient(93.67deg, #007AFF 2.87%, #00F0FF 100%);
    cursor: pointer;
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn_login:hover span {
    /* On hover, change to white gradient text */
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white; /* Fallback */
    transform: scale(1);
}

.btn_login:hover::before {
    background: linear-gradient(93.67deg, #0051D5 2.87%, #00C8E6 100%);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.5);
    opacity: 1;
}

/* Active/pressed state - no size change, text stays visible */
.btn_login:active {
    transform: translateY(0) scale(1);
    transition: transform 0.1s ease, background 0.2s ease;
    background: linear-gradient(93.67deg, #0051D5 2.87%, #00C8E6 100%);
}

.btn_login:active span {
    /* Active state - keep white text */
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white; /* Fallback */
    transform: scale(1);
}

.btn_login:active::before {
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
    background: linear-gradient(93.67deg, #003A9B 2.87%, #0099CC 100%);
}

/* User Info Component */
.user-info {
    width: 784px;
    height: 73px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;/* Rectangle 159 */
    
    background: linear-gradient(90.19deg, rgba(44, 55, 78, 0.72) 0.04%, rgba(44, 55, 78, 0.3672) 101.87%);
    border-radius: 10px;
    
}

.user-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    height: 100%;
    flex: 1;
    justify-content: flex-start;
}

.user-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.user-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.user-info-label {
    color: #00b2ff;
    font-size: 11px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
    text-transform: capitalize;
}

.user-info-value {
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
}

.user-info-divider {
    width: 1px;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

.user-timezone {
    margin-right: 1vw;
    display: flex;
    align-items: center;
}

.timezone-time {
    margin-right: 1vw;
}

.user-country-flag {
    padding-left: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-country-flag img {
    height: 4vh;
    padding-right: 0.5vw;
}

.user-country-flag svg {
    color: #767676;
}

.header-nav {
    width: 100%;
    margin-top: 108px;
    height: 64px;
    background: linear-gradient(270.06deg, #455565 0.05%, #78848F 52.43%, #BAC0C4 99.95%);
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-item-mobile {
    position: absolute;
    width: 9%;
    height: 70%;
    top: 15%;
    left: 3%;
    border-radius: 0.4vw;
    background-color: #00031a4d;
    display: flex;
    justify-content: center;
    font-size: 1vw;
    align-items: center;
    color: white;
    font-family: 'Roboto';
    cursor: pointer;
}

.nav-item-mobile svg {
    width: 1.5vw;
    height: 1.5vw;
    padding-right: 0.2vw;
}

.nav-item {
    padding: 1vh 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s;
    cursor: pointer;
}

.nav-item:hover {
    cursor: pointer;
    background-color: #007AFF;
}

.nav-item.active {
    background-color: #007AFF;
    position: relative;
}   

.nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #00b2ff);
}

.nav-item span {
    color: white;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    /* font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 1vw;
    line-height: 23px; */
    text-align: center;
    letter-spacing: 0.01em;
}

.nav-item svg {
    font-size: 1.2vw;
    margin-right: 0.3vw;
    color: white;
}

.nav-item img {
    width: 32px;
    height: 32px;
    margin-right: 0.3vw;
}

/*  */
/* Landing Customization */
.Landing {
    position: relative;
    width: 100%;
}

.landing-img {
    width: 100%;
    height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-img img {
    /* width: auto; */
    /* min-width: 100%; */
    height: 100%;
    background-color: #00031a; /* Dark background while image loads */
}

.landing-body {
    width: 100%;
    min-height: 100vh;
    /* background: linear-gradient(90.64deg, #1C1D2C 1.63%, #181C3E 99.76%); */

    background: #00031A;
    background-image:
        radial-gradient(circle at 2vw 25vh, rgba(47, 60, 245, 0.226), transparent 12%),
        radial-gradient(circle at 100% calc(100% - 30vh), rgba(90, 120, 255, 0.24), transparent 15%);

    background-size: 100% 136vh;
    /* each tile’s width/height */
    background-repeat: repeat;
    /* repeat across page */

    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 60vh;
}

.landing-search-div {
    position: absolute;
    left: 5vw;
    top: 4vh;
}

.landing-search {
    padding: 0 1vw;
    width: 20vw;
    height: 4vh;
    outline: none;
    border: none;
    background-color: #393E48E8;
    border-radius: 0.3vw;
    color: white;
}

.landing-search-div svg {
    position: absolute;
    width: 1vw;
    right: 0.5vw;
    top: calc(50% - 0.5vw);
    color: white;
}

.landing-filter {
    position: absolute;
    right: 5vw;
    top: 4vh;
    color: white;
    background-color: #393E48;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 9vw;
    height: 5vh;
    border-radius: 0.2vw;
    cursor: pointer;
}

.landing-filter span {
    font-size: 0.7vw;
    margin-right: 0.5vw;
}

.landing-filter img {
    width: 1vw;
}

.landing-fields {
    margin-top: 30vh;
    width: 90%;
    height: 50vh;
    display: flex;
    justify-content: center;
    margin-left: 6vw;
}

.landing-field {
    width: 30vw;
    height: 100%;
    /* background-color: rebeccapurple; */
    margin-left: -6vw;
    position: relative;
}

.landing-image-back {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #00031a; /* Dark background while image loads */
    left: 0;
}

.landing-image-girl {
    position: absolute;
    height: 60vh;
    bottom: 10%;
    background-color: #00031a; /* Dark background while image loads */
    left: 5%;
}

.fix-img1 {
    left: 22%;
}

.fix-img2 {
    left: 18%;
}

.fix-img3 {
    left: 30%;
}

.landing-button {
    position: absolute;
    bottom: 0;
}

.casino_btn {
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 15vh;
    color: white;
    cursor: pointer;
}

.casino_btn:hover {
    background-size: 100% 100%;
}

.landing_btn {
    position: absolute;
    bottom: -1vh;
    left: calc(50% - 11vw);
    font-size: 1.5vw;
}


/* footer */
.footer {
    width: 100%;
    position: relative;
    height: 55vh;
    background-color: #ffffff1b;
    margin-top: -55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.footer-logo {
    width: 100%;
    height: 11vh;
    padding: 1vw;
    margin-bottom: 1vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 100%;
}

.footer-logo :last-child {
    width: 2.4vw;
    height: 2.4vw;
    background-size: 100% 100%;
}

.footer-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-link {
    width: 10vw;
    color: #FFFFFFB2;
    text-decoration: none;
}

.verticalWall {
    border-right: 1px solid #FFFFFFB2;
}

.footer-others {
    margin-top: 1vh;
    width: 50%;
    padding: 1vw;
}

.footer-others img {
    width: 100%;
}

.footer-copyright {
    margin-top: 2vh;
    width: 100%;
    color: #FFFFFFBF;
}


/* nav-menu */
/* Sidebar */
.nav-menu {
    position: fixed;
    width: 300px;
    height: calc(100% - 108px);
    left: -300px;
    bottom: 0;
    background: linear-gradient(157.47deg, #030F1D 11.89%, #162537 67.8%);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    flex-wrap: wrap;
    z-index: 100;
    transition: left 0.5s;
    overflow-y: auto;
    overflow-x: hidden;
    /* transform: translate3d( 15, 0, 0 ); */
}
.nav-menu>div:last-child{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* black-back */
.menu-black {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000a6;
    z-index: 90;
    left: 0;
    top: 108px;
    display: none;
    animation: blackBoard-show 0.5s ease forwards;
}

@keyframes blackBoard-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nav-lang {
    width: 278px;
    height: 45px;
    margin: 19px 11px;
    background-color: #000000AD;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5vw;
    color: white;
    cursor: pointer;
}

.nav-lang span {
    font-family: Roboto;
    font-weight: 400;
    font-size: 14px;
    line-height: 146%;
    letter-spacing: 0%;
    margin-left: 5px;
}

.nav-lang img {
    height: 32px;
}

.nav-menu-items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu-item {
    width: 100%;
    height: 60px;
    transition: transform 0.3s;
    margin: 1vh 0;
}

.nav-menu-item:hover {
    /* background-image: linear-gradient(90deg, #007AFF 0%, rgba(0, 122, 255, 0) 100%); */
    animation: menu-item-show 0.4s ease forwards;
}

.nav-menu-item:active {
    /* background-image: linear-gradient(90deg, #007AFF 0%, rgba(0, 122, 255, 0) 100%); */
    transform: scale(0.9);
}

@keyframes menu-item-show {
    0% {
        transform: scale(0.9);
    }

    30% {
        background: linear-gradient(90deg, #007AFF 0%, rgba(0, 122, 255, 0) 100%);
        opacity: 0.5;
    }

    100% {
        background: linear-gradient(90deg, #007AFF 0%, rgba(0, 122, 255, 0) 100%);
        opacity: 1;
        transform: scale(1.05);
    }
}

.nav-menu-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 35px;
    color: white;
    text-decoration: none;
}

.nav-menu-item.active {
    background: linear-gradient(90deg, #007AFF 0%, rgba(0, 122, 255, 0) 100%);
    position: relative;
}

.nav-menu-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00ffff, #00b2ff);
}

.nav-menu-item img {
    width: 32px;
    height: 32px;
    padding-right: 15px;
}

.nav-menu-item span {
    font-family: Roboto;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    /* leading-trim: NONE; */
    line-height: 100%;
    letter-spacing: 1%;

}

.user-sign-btn-menu {
    width: 158px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.user-sign-btn-menu span {
    cursor: default;
    position: relative;
    display: block;
    background: linear-gradient(93.67deg, #007AFF 2.87%, #00F0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-radius: 15px;
    cursor: pointer;
}

.user-sign-btn-menu div {
    width: 100%;
    height: 45px;
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Menu User Info Styles */
.menu-user-info {
    margin-left: 5%;
    width: 90%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: left;
}

.menu-user-avatar {
    width: 50px;
    height: 50px;
    color: #00b2ff;
    flex-shrink: 0;
}

.menu-user-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-user-email {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.menu-user-level {
    color: #00b2ff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.menu-user-balances {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(90.19deg, rgba(44, 55, 78, 0.72) 0.04%, rgba(44, 55, 78, 0.3672) 101.87%);
    border-radius: 10px;
}

.menu-balance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    justify-content: center;
}

.menu-balance-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.menu-balance-content {
    width: 180px;
    text-align: left;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-balance-label {
    color: #00b2ff;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
}

.menu-balance-value {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.menu-logout-btn-container {
    width: 40%;
    margin-bottom: 20px;
}


.btn_logout {
    width: 150px;
    padding: 10px 5px;
    position: relative;
    background: linear-gradient(90.64deg, #1C1D2C 1.63%, #181C3E 99.76%);
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.btn_logout::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(93.67deg, #007AFF 2.87%, #00F0FF 100%);
    border-radius: 6px;
    cursor: pointer;
    z-index: -1;
}

.btn_logout:hover {
    background: #007AFF;
    cursor: pointer;
}
.btn_logout :hover {
    cursor: pointer;
}

.btn_logout:hover::before {
    background: #007AFF;
}

.btn_logout:hover span {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.MobileVersion-Menu {
    width: 244px;
    height: 82px;
    margin-bottom: 52px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-top: 2px solid #DEDEDE73;
}

.menu-item-mobile {
    width: 156px;
    height: 47px;
    border-radius: 0.4vw;
    background: linear-gradient(94.71deg, rgba(85, 89, 96, 0.7) 1.13%, rgba(105, 123, 155, 0.7) 100%);
    border: 0.7px solid rgba(255, 255, 255, 0.21);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Roboto';
}

.menu-item-mobile svg {
    width: 25px;
    height: 25px;
    padding-right: 0.2vw;
}


/* Mobile HIdden */
.header-nav-mobile {
    display: none;
}

.Landing-mobile {
    display: none;
}

.menu-item-mobile-mode {
    display: none;
}

.landing-img-mobile {
    display: none;
}

.mobile-login-button {
    display: none;
}

.mobile-user-info-container {
    display: none;
}

.landing-nav-mobile {
    display: none;
}

/* Login Modal Styles */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    border: 0.5px solid #444444;
    border-radius: 8px;
    padding: 40px 50px;
    z-index: 9999;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.login-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    transition: opacity 0.2s;
}

.login-close-btn:hover {
    opacity: 0.7;
}

.login-close-btn span {
    display: block;
    line-height: 1;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.login-title {
    color: white;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 10px 0;
    font-family: 'Roboto', sans-serif;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-label {
    color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.login-input {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    box-sizing: border-box;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-input:focus {
    border-color: rgba(255, 255, 255, 0.8);
}

.login-checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid white;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    flex-shrink: 0;
}

.login-checkbox:checked {
    background-color: #007AFF;
    border-color: #007AFF;
}

.login-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.login-checkbox-label {
    color: white;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    user-select: none;
}

.login-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: #8B5CF6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    margin-top: 5px;
}

.login-submit-btn:hover {
    background-color: #7C3AED;
    opacity: 0.9;
}

.login-submit-btn:active {
    opacity: 0.8;
}

.login-submit-btn:disabled {
    background-color: #555555;
    cursor: not-allowed;
    opacity: 0.6;
}

.login-submit-btn:disabled:hover {
    background-color: #555555;
    opacity: 0.6;
}

.login-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    text-align: center;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    background: linear-gradient(93.67deg, #007AFF 2.87%, #00F0FF 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    max-width: 400px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.notification-message {
    flex: 1;
    margin-right: 15px;
}

.notification-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 0.7;
}