:root {
    --bg-primary: #f8f8fa;
    --bg-secondary: #fcfcfd;
    --text-primary: #2c2c2e;
    --text-secondary: #8e8e93;
    --border-color: rgba(60,60,67,0.1);
    --accent-color: #0070e1;
    --accent-hover: #0064c8;
    --shadow-color: rgba(0,0,0,0.03);
    --button-hover: rgba(0,112,225,0.08);
}

[data-theme="dark"] {
    --bg-primary: #1c1c1e;
    --bg-secondary: #2c2c2e;
    --text-primary: #ffffff;
    --text-secondary: #98989d;
    --border-color: rgba(255,255,255,0.1);
    --shadow-color: rgba(0,0,0,0.2);
    --button-hover: rgba(255,255,255,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--bg-secondary);
    padding: 32px 24px;
    box-shadow: 0 0 40px var(--shadow-color);
    position: relative;
}

.utility-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 100;
}

.utility-buttons button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.utility-buttons button:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

.theme-toggle .dark-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .dark-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .light-icon {
    display: none;
}

.lang-toggle {
    font-size: 14px;
    font-weight: 500;
}

.qr-code-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.qr-code-modal.active {
    opacity: 1;
    visibility: visible;
}

.qr-code-container {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.qr-code-modal.active .qr-code-container {
    transform: scale(1);
}

.app-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-top: 12px;
}

.app-icon {
    width: 128px;
    height: 128px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-info {
    flex: 1;
    padding-top: 8px;
    min-width: 0;
}

.app-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2c2c2e;
}

.app-subtitle {
    color: #8e8e93;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 400;
}

.download-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-button {
    background: #0070e1;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,112,225,0.2);
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.download-button:hover {
    background: #0064c8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,112,225,0.3);
}

.download-button.downloading {
    cursor: default;
    background: #0070e1;
    transform: none;
}

.download-button .progress-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #0064c8;
    transition: width 0.1s linear;
    z-index: 1;
}

.download-button .button-text {
    position: relative;
    z-index: 2;
}

.download-button.downloading:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,112,225,0.2);
}

.share-button {
    width: 36px;
    height: 36px;
    color: #0070e1;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
    position: relative;
}

.share-button:hover {
    background: rgba(0,112,225,0.08);
}

.tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    animation: fadeInOut 2s ease-in-out;
    z-index: 1000;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}

.app-metrics {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(60,60,67,0.1);
    margin-bottom: 28px;
}

.metric {
    text-align: center;
    flex: 1;
    position: relative;
}

.metric:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: rgba(60,60,67,0.1);
}

.metric-value {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c2c2e;
}

.metric-label {
    color: #8e8e93;
    font-size: 14px;
    font-weight: 400;
}

.screenshots {
    margin: 28px -24px;
    padding: 0 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.screenshots-container {
    display: flex;
    gap: 12px;
    padding: 4px 0;
}

.screenshot {
    flex: 0 0 auto;
    width: 280px;
    height: 158px;
    border-radius: 12px;
    background: #f8f8fa;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.screenshot:hover {
    transform: translateY(-2px);
}

.stars {
    color: #ff9f0a;
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #2c2c2e;
}

.description {
    color: #3c3c43;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
}

.feature-list {
    margin: 24px 0;
}

.feature-item {
    margin-bottom: 28px;
    padding: 20px;
    background: #f8f8fa;
    border-radius: 16px;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c2c2e;
}

.feature-description {
    color: #3c3c43;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.update-info {
    background: #f8f8fa;
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    border: 1px solid rgba(60,60,67,0.1);
}

.update-version {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2e;
}

.update-date {
    color: #8e8e93;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }
    
    .app-header {
        gap: 16px;
    }

    .app-icon {
        width: 96px;
        height: 96px;
        border-radius: 22px;
    }

    .app-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }
} 

.lang-selector {
    position: relative;
    margin-left: 8px;
}

.lang-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Kanit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lang-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.lang-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
}

.lang-button:hover::after {
    border-top-color: #fff;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: none;
    overflow: hidden;
    min-width: 140px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    opacity: 0;
    transition: all 0.2s ease;
}

.lang-dropdown.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.lang-option {
    padding: 10px 16px;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.15s ease;
}

.lang-option:hover {
    background: rgba(0, 0, 0, 0.03);
    color: #2196F3;
    padding-left: 20px;
}

.lang-option::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
    margin-right: 8px;
    transition: all 0.15s ease;
}

.lang-option:hover::before {
    background: #2196F3;
    transform: scale(1.5);
}

[data-lang="en"] [lang="th"] {
    display: none;
}

[data-lang="th"] [lang="en"] {
    display: none;
} 

/* Main Website Styles */
:root {
    --primary-color: #e31837;
    --text-primary: #333;
    --text-secondary: #666;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--bg-light);
    color: var(--text-primary);
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: auto;
}

.nav-menu > li:not(.auth-buttons) {
    margin-right: auto;
}

.auth-buttons {
    margin-left: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

/* Add sliding underline only for main nav items */
.nav-menu > li:not(.auth-buttons) .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu > li:not(.auth-buttons) .nav-link:hover::after,
.nav-menu > li:not(.auth-buttons) .nav-link.active::after {
    width: 70%;
}

/* Style for auth buttons */
.auth-buttons .nav-link {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
}

.auth-buttons .nav-link.login {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.auth-buttons .nav-link.login:hover {
    background: var(--primary-color);
    color: white;
}

.auth-buttons .nav-link.register {
    background: var(--primary-color);
    color: white;
}

.auth-buttons .nav-link.register:hover {
    background: #c41230;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-link {
        width: 100%;
        padding: 0.8rem 1.2rem;
        border-radius: 6px;
        margin: 0.1rem 0;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .auth-buttons .nav-link {
        margin: 0.3rem 0;
    }

    .nav-menu > li:not(.auth-buttons) .nav-link::after {
        bottom: -2px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
        margin-left: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .auth-buttons {
        margin-left: 0;
        width: 100%;
    }
}

.auth-button {
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s;
}

.login-btn {
    background: none;
    color: var(--text-primary);
}

.login-btn:hover {
    background: rgba(0,0,0,0.05);
}

.register-btn {
    background: var(--primary-color);
    color: white;
}

.register-btn:hover {
    background: #c41230;
}

.main-content {
    flex: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    align-items: center;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-secondary);
    opacity: 0.5;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.tab:hover {
    color: var(--primary-color);
}

.tab.active {
    color: var(--primary-color);
    font-weight: 500;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.game-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.game-info {
    padding: 1.25rem;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.game-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.platform-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.platform-badge.android {
    background-color: #3DDC84;
    color: white;
}

.platform-badge.ios {
    background-color: #000000;
    color: white;
}

.download-btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    background: #00a8ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.download-btn:hover {
    background: #0097e6;
}

.footer {
    background: #292929;
    color: white;
    padding: 1rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-logo {
    width: 180px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 1;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
} 

/* Page Transition Animations */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.page-transition.active {
    opacity: 1;
}

/* Content Animation */
.fade-in {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fade-in.active {
    opacity: 1;
} 

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        max-width: 960px;
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .main-content {
        max-width: 720px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.8rem 1.2rem;
        border-radius: 6px;
        margin: 0.1rem 0;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        position: relative;
        text-align: center;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 70%;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(227, 24, 55, 0.05);
        color: var(--primary-color);
    }

    .nav-menu > li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-menu > li:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 0.2rem;
    }

    .auth-buttons {
        display: none;
    }

    .main-content {
        max-width: 100%;
        padding: 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .game-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .game-image {
        height: 180px;
    }

    .tabs {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

    .tab {
        white-space: nowrap;
        padding: 0.5rem 0;
    }

    .platform-badges {
        justify-content: center;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .game-title {
        font-size: 1rem;
    }

    .game-subtitle {
        font-size: 0.85rem;
    }

    .platform-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
    }

    .download-btn {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 1rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

/* Add hamburger menu for mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 5px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 23px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
    }



    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }
} 

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    display: none;
    padding: 1rem 0;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mobile-auth-buttons .auth-button {
    width: 100%;
    padding: 0.75rem;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
    }



    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }
} 

/* Authentication Pages */
.auth-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 780px;
}

.auth-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.auth-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(227, 24, 55, 0.1);
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 0.95rem;
    outline: none;
}

.auth-form input[type="password"] {
    padding-right: 45px;
}

.auth-form .toggle-password {
    position: absolute;
    right: 0.8rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1;
}

.auth-form .toggle-password:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.remember-me input[type="checkbox"] {
    margin: 0;
}

.remember-me span {
    user-select: none;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c41230;
    transform: translateY(-2px);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 480px) {
    .auth-box {
        padding: 1.5rem;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
} 

/* Auth Forms in Main Content */
.auth-forms {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 0;
}

.auth-form-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content-inner {
    animation: fadeIn 0.3s ease;
}

/* Update existing auth styles for better integration */
.auth-container {
    padding: 2rem;
}

@media (max-width: 768px) {
    .auth-forms {
        padding: 1rem;
    }
    
    .auth-container {
        padding: 1.5rem;
    }
} 

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 1.5rem;
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Terms Content Styles */
.terms-content {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-primary);
}

.terms-content h3:first-child {
    margin-top: 0;
}

.terms-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.terms-actions {
    margin-top: 2rem;
    text-align: right;
}

/* Forgot Password Form Styles */
.forgot-password-form {
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }
} 

.auth-switch a,
.forgot-password,
.terms a,
.auth-forms a {
    text-decoration: none;
    color: var(--primary-color);
}

.auth-switch a:hover,
.forgot-password:hover,
.terms a:hover,
.auth-forms a:hover {
    color: var(--primary-dark);
} 

/* Remove underlines from all links */
a {
    text-decoration: none;
}

.nav-link,
.auth-button,
.breadcrumb a,
.download-btn,
.social-link,
.footer-link,
.auth-switch a,
.forgot-password,
.terms a,
.auth-forms a {
    text-decoration: none;
} 

.auth-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
    transition: color 0.3s ease;
}

.auth-close-btn:hover {
    color: #333;
}

.auth-forms {
    position: relative;
} 

/* News Page Styles */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-search {
    max-width: 300px;
    width: 100%;
}

.news-search .input-group {
    position: relative;
    width: 100%;
}

.news-search .input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.news-search input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-search input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
    outline: none;
}

.news-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.news-categories::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 0.6rem 1.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.category-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0,123,255,0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-tag.event { background: #ff6b6b; }
.news-tag.update { background: #4dabf7; }
.news-tag.maintenance { background: #fab005; }
.news-tag.promotion { background: #40c057; }

.news-content {
    padding: 1rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.news-meta i {
    margin-right: 0.3rem;
}

.news-title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.news-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 0.8rem;
    }
    
    .news-title {
        font-size: 1rem;
    }
} 

/* Contact Page Styles */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.contact-card.primary {
    background: linear-gradient(135deg, var(--primary-color), #c41230);
    color: white;
    border: none;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card.primary .contact-icon {
    background: rgba(255,255,255,0.15);
    color: white;
}

.contact-icon.facebook { color: #1877f2; }
.contact-icon.discord { color: #5865F2; }
.contact-icon.line { color: #00B900; }
.contact-icon.email { color: #ea4335; }
.contact-icon.faq { color: #fbbc05; }

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-card.primary h3 {
    color: white;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 60px;
}

.contact-card.primary p {
    color: rgba(255,255,255,0.9);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    background: var(--bg-light);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.contact-btn:hover {
    background: #f0f0f0;
    gap: 0.8rem;
    transform: translateY(-2px);
}

.contact-card.primary .contact-btn {
    background: white;
    color: var(--primary-color);
}

.contact-btn.facebook:hover { background: #1877f2; color: white; }
.contact-btn.discord:hover { background: #5865F2; color: white; }
.contact-btn.line:hover { background: #00B900; color: white; }
.contact-btn.email:hover { background: #ea4335; color: white; }
.contact-btn.faq:hover { background: #fbbc05; color: white; }

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
}

.status.online i {
    color: #40c057;
}

.response-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--bg-light);
}

.contact-hours {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-hours h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hours-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hours-item .day {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.hours-item .time {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p {
        font-size: 0.9rem;
        min-height: auto;
        margin-bottom: 1.5rem;
    }

    .contact-btn {
        padding: 0.8rem 1.5rem;
    }

    .contact-hours {
        padding: 1.5rem;
    }

    .contact-hours h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.page-link:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-link.next {
    width: auto;
    padding: 0 1rem;
    border-radius: 20px;
}

.page-dots {
    color: #666;
    padding: 0 0.5rem;
    user-select: none;
}

@media (max-width: 768px) {
    .pagination {
        margin-top: 2rem;
    }

    .page-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
} 

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-manage,
.btn-logout,
.btn-login,
.btn-register {
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-manage {
    background: var(--primary-color);
    color: white;
}

.btn-manage:hover {
    background: #c41230;
}

.btn-logout {
    background: var(--primary-color);
    color: white;
}

.btn-logout:hover {
    background: #c41230;
}

.btn-login {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
}

.btn-register {
    background: var(--primary-color);
    color: white;
}

.btn-register:hover {
    background: #c41230;
}

@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-manage,
    .btn-logout,
    .btn-login,
    .btn-register {
        width: 100%;
        justify-content: center;
    }
} 

/* Auth Pages Styles (Login, Register, Forgot Password) */
.auth-content {
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.auth-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
}

.auth-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form {
    margin-top: 1rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.auth-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(227, 24, 55, 0.1);
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 0.95rem;
    outline: none;
}

.auth-form input[type="password"] {
    padding-right: 45px;
}

.auth-form .toggle-password {
    position: absolute;
    right: 0.8rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1;
}

.auth-form .toggle-password:hover {
    color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin: 0;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c41230;
    transform: translateY(-2px);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-box {
        padding: 1.5rem;
    }

    .auth-header h2 {
        font-size: 1.5rem;
    }

    .auth-form input {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .auth-box {
        padding: 1.25rem;
    }

    .auth-header h2 {
        font-size: 1.3rem;
    }

    .form-check-label {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
} 

/* Password Strength Styles */
/* Password Strength Styles */
.password-strength {
    margin-top: 8px;
    padding: 0 2px;
}

.strength-bar-container {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.strength-bar {
    width: 0;
    height: 100%;
    transition: all 0.4s ease;
    border-radius: 3px;
}

/* Password Strength Colors */
.strength-bar.weak {
    width: 25%;
    background: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
}

.strength-bar.fair {
    width: 50%;
    background: #ffc107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}

.strength-bar.good {
    width: 75%;
    background: #17a2b8;
    box-shadow: 0 0 8px rgba(23, 162, 184, 0.4);
}

.strength-bar.strong {
    width: 100%;
    background: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
}

.strength-text {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    text-align: right;
    transition: all 0.3s ease;
}

.strength-text.weak {
    color: #dc3545;
}

.strength-text.fair {
    color: #ffc107;
}

.strength-text.good {
    color: #17a2b8;
}

.strength-text.strong {
    color: #28a745;
}

/* Hide browser's default password toggle */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
}

/* Hide the default eye icon in Microsoft Edge */
::-ms-reveal {
    display: none !important;
} 