/* Modern Gunny Style Inspired by cf4vn.biz */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #ff9500;
    --primary-glow: rgba(255, 149, 0, 0.5);
    --secondary-color: #00a2ff;
    --secondary-glow: rgba(0, 162, 255, 0.5);
    /* cf4vn color palette */
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --text-color: #ffffff;
    --accent-color: #ffcc00;
    --card-border: rgba(255, 149, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* cf4vn Checkered Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 149, 0, 0.02) 35px, rgba(255, 149, 0, 0.02) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 149, 0, 0.02) 35px, rgba(255, 149, 0, 0.02) 70px);
    pointer-events: none;
    z-index: 0;
}

/* Frame effect (Optional but matches cf4vn vibe) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 1;
}

/* Reset some old styles */
.container {
    width: 100% !important;
    max-width: 1200px !important;
    padding: 0 20px !important;
}

/* Glassmorphism Header */
header.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 149, 0, 0.2);
    padding: 15px 0;
    transition: 0.4s;
    height: 90px !important;
    display: block !important;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo-modern img {
    height: 70px;
}

.menu-modern ul {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.menu-modern ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.menu-modern ul li a:hover,
.menu-modern ul li a.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-glow);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #ff9500, #ffcc00);
    color: #000;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.5);
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.7);
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    background: radial-gradient(circle at 70% 50%, rgba(255, 149, 0, 0.15) 0%, transparent 50%);
}

.hero-content {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.hero-text {
    flex: 1.2;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-size: 82px;
    margin: 0;
    line-height: 0.95;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Be Vietnam Pro', sans-serif;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.hero-text h1 span {
    color: var(--primary-color);
    display: block;
}

.hero-text p {
    font-size: 20px;
    color: #dfdfdf;
    margin: 30px 0 50px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-character {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-character img {
    max-height: 600px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.slider-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* Centered with reasonable width */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    float: none !important;
    /* Override carousel.css float */
}

.slideshow-container img {
    border-radius: 15px;
    display: block;
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 4px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: var(--primary-color);
}

/* Listing Tags (News, Rankings, Servers) */
.listtag {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listtag li {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 8px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.listtag li:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(5px);
    border-color: rgba(255, 149, 0, 0.2);
}

.listtag li a {
    display: flex;
    align-items: center;
    width: 100%;
    color: #dfdfdf;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.listtag li .tag {
    min-width: 35px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    border-radius: 4px;
    margin-right: 12px;
    text-transform: uppercase;
    color: #fff;
}

.listtag li .tag.green {
    background: #00c853;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

.listtag li .tag.red {
    background: #ff1744;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

.listtag li .tag.orange {
    background: #ff9100;
    box-shadow: 0 0 10px rgba(255, 145, 0, 0.3);
}

.listtag li .right {
    margin-left: auto;
    color: var(--primary-color);
    font-weight: 800;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Game Features Section (cf4vn style) */
.features-section-wrapper {
    position: relative;
    padding: 100px 0;
    background: #08080a;
    border-top: 1px solid rgba(0, 162, 255, 0.3);
    border-bottom: 1px solid rgba(0, 162, 255, 0.3);
    overflow: hidden;
    margin: 60px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
    z-index: 5;
    width: 100%;
}

.title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.title-with-lines .line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.title-with-lines .line:last-child {
    background: linear-gradient(to left, transparent, var(--primary-color));
}

.features-header h2 {
    font-size: 48px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    letter-spacing: 3px;
    text-shadow: 0 0 20px var(--primary-glow);
    font-family: 'Be Vietnam Pro', sans-serif;
}

.features-header .subtitle {
    color: #888;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
}

.features-section-wrapper::before,
.features-section-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--primary-color), var(--secondary-color), transparent);
    background-size: 200% 100%;
    animation: glowMove 3s linear infinite;
    z-index: 2;
}

.features-section-wrapper::before {
    top: 0;
}

.features-section-wrapper::after {
    bottom: 0;
}

@keyframes glowMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.features-grid-cf4vn {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.feature-card-cf4vn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card-cf4vn:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
    background: rgba(255, 149, 0, 0.05);
}

.feature-icon-cf4vn {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.feature-card-cf4vn h3 {
    color: var(--primary-color);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.feature-card-cf4vn p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Modern Select & Filter */
.filter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.filter select {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 10px 15px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
}

.btn-login:hover,
.btn-login.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.filter select:focus {
    border-color: var(--primary-color);
    color: #fff;
}

/* Main Content Layout */
.main-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-area {
    width: 100%;
}

/* Cards & Boxes */
.card-modern {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.card-modern:hover {
    border-color: rgba(255, 149, 0, 0.3);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.section-title h2 {
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Override old table/news styles */
#news2 li,
.news-item {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 0 !important;
}

#news2 li a,
.news-item a {
    color: #e0e0e0 !important;
    font-size: 16px !important;
}

#news2 li a:hover {
    color: var(--primary-color) !important;
}

.tag {
    border-radius: 4px !important;
    font-weight: bold !important;
}

/* Footer */
footer.modern-footer {
    background: #050507;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 15px;
    color: #888;
}

.footer-col ul li a {
    color: #666;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 80px;
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-size: 14px;
}

/* Login Form Overrides */
#login {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

#login input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    height: auto !important;
    font-size: 16px !important;
}

#login input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
    outline: none !important;
}

#login button.login {
    width: 100% !important;
    height: 55px !important;
    margin: 10px 0 !important;
    background: linear-gradient(135deg, #ff9500, #ffcc00) !important;
    color: #000 !important;
    border: none !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

/* Register Form Styles - Match Login */
#register input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    height: auto !important;
    font-size: 16px !important;
}

#register input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
    outline: none !important;
}

#register button.login {
    width: 100% !important;
    height: 55px !important;
    margin: 10px 0 !important;
    background: linear-gradient(135deg, #ff9500, #ffcc00) !important;
    color: #000 !important;
    border: none !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

#register button.login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.5);
}

#login button.login:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px var(--primary-glow) !important;
}

#login .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-top: 15px !important;
    margin-top: 15px !important;
    text-align: center !important;
}

#login .footer a {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

#login .footer a:hover {
    text-decoration: underline !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 64px;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-character {
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-header {
        height: 70px !important;
    }

    .logo-modern img {
        height: 40px;
    }

    .menu-modern {
        display: none;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .modern-header {
        height: auto !important;
        padding: 10px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .auth-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .auth-buttons .btn-login,
    .auth-buttons .btn-register {
        padding: 10px 20px !important;
        font-size: 12px !important;
        flex: 1;
        max-width: 150px;
    }

    .hero {
        padding: 80px 20px 40px;
    }

    .hero-text .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-text .auth-buttons a {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .hero-character {
        margin-top: 30px;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-modern {
        width: 90% !important;
        max-width: 350px !important;
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px !important;
    }

    .preloader-title {
        font-size: 48px !important;
    }
}

/* Fix Features Section on Mobile */
@media (max-width: 768px) {
    .features-header {
        padding: 30px 20px;
    }

    .features-header h2 {
        font-size: 32px !important;
        letter-spacing: 2px !important;
        word-break: break-word;
    }

    .features-header .subtitle {
        font-size: 12px !important;
        letter-spacing: 1px !important;
    }

    .title-with-lines {
        gap: 10px !important;
    }

    .title-with-lines::before,
    .title-with-lines::after {
        width: 30px !important;
    }

    .features-grid-cf4vn {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 20px;
    }

    .feature-card-cf4vn {
        padding: 20px !important;
    }

    .feature-card-cf4vn h3 {
        font-size: 16px !important;
    }

    .feature-card-cf4vn p {
        font-size: 13px !important;
    }

    .feature-icon-cf4vn {
        font-size: 32px !important;
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .features-header h2 {
        font-size: 24px !important;
        letter-spacing: 1px !important;
    }

    .features-header .subtitle {
        font-size: 10px !important;
    }
}


/* Better Mobile Header Layout */
@media (max-width: 768px) {
    .modern-header .nav-container {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .modern-header .logo-modern {
        flex: 0 0 auto;
    }

    .modern-header .auth-buttons {
        position: static;
        width: auto;
        flex: 0 0 auto;
        gap: 8px;
    }

    .modern-header .auth-buttons .btn-login,
    .modern-header .auth-buttons .btn-register {
        padding: 8px 16px !important;
        font-size: 11px !important;
        white-space: nowrap;
    }
}

/* CF4VN Style Auth Forms */
.auth-form-container {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 149, 0, 0.2);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.close-modal-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.auth-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-form-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.auth-form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-form-footer p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.auth-form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.auth-form-footer a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* Update register form inputs */
#register input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    height: auto !important;
    font-size: 15px !important;
}

#register input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
    outline: none !important;
}

#register button.login {
    width: 100% !important;
    height: 55px !important;
    margin: 10px 0 !important;
    background: linear-gradient(135deg, #ff9500, #ffcc00) !important;
    color: #000 !important;
    border: none !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#register button.login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.5);
}

/* Mobile responsive for auth forms */
@media (max-width: 768px) {
    .auth-form-container {
        padding: 30px 25px;
        max-width: 100%;
    }

    .auth-form-title {
        font-size: 20px;
    }
}