* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --secondary-gold: #f59e0b;
    --accent-red: #dc2626;
    --dark-navy: #0f172a;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #1e293b;
    --text-light: #ffffff;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-image {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.logo-text h6 {
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.logo-text span {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 2px;
}

/* ==================== SOCIAL LINKS FIX ==================== */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    /* Removes the button background and padding */
    background: none !important; 
    padding: 0 !important;
    
    /* Sets the default icon color */
    color: var(--secondary-gold); 
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.social-icon:hover {
    /* Changes only the icon color, no background flicker */
    color: var(--accent-red) !important;
    background: none !important;
    transform: translateY(-3px);
}

/* Ensure mobile centering still works */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.logo-text .presents {
    color: #94a3b8 ;
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), var(--accent-red));
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 3px;
}

.nav-link:hover {
    color: var(--secondary-gold);
}

.nav-link:hover::before {
    width: 100%;
    left: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: 3px;
    transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #dc2626 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid var(--secondary-gold);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-red) 100%);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ==================== SECTIONS ==================== */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    font-weight: 800;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-gold), var(--accent-red));
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: var(--secondary-gold);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ==================== TOURNAMENTS SECTION ==================== */
.tournaments {
    background: var(--card-bg);
}

.tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.tournament-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-blue);
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.2);
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.tournament-header h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
}

.tournament-badge {
    background: linear-gradient(135deg, var(--secondary-gold), var(--accent-red));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.tournament-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.detail-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(30, 64, 175, 0.95) 0%, rgba(124, 58, 237, 0.8) 50%, transparent 100%);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .gallery-overlay span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 300px;
    }
}
/* ==================== REGISTER SECTION ==================== */
.register {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #7c3aed 100%);
    text-align: center;
    color: white;
}

.register .section-title {
    color: white;
}

.register .section-title::after {
    background: white;
}

.register-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-gold);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-navy);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-gold);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section h5 {
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.7rem 1.5rem;
    background: var(--primary-blue);
border-radius: 8px;
transition: all 0.3s ease;
font-weight: 600;
}
.social-icon:hover {
background: var(--secondary-gold);
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #94a3b8;
}
/* ==================== MODAL ==================== */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.85);
animation: fadeIn 0.3s ease;
}
.modal-content {
position: relative;
background-color: white;
margin: 2% auto;
width: 95%;
max-width: 1000px;
height: 90vh;
border-radius: 15px;
animation: slideUp 0.3s ease;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
@keyframes slideUp {
from {
transform: translateY(50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.close {
position: absolute;
right: 20px;
top: 10px;
font-size: 40px;
font-weight: bold;
color: #64748b;
cursor: pointer;
z-index: 1;
transition: color 0.3s ease;
}
.close:hover {
color: var(--accent-red);
}
.registration-form-wrapper {
width: 100%;
height: 100%;
overflow: auto;
border-radius: 15px;
}
.registration-form-wrapper iframe {
width: 100%;
height: 100%;
border: none;
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
.contact-content {
grid-template-columns: 1fr;
}
.tournament-grid {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.hamburger {
display: flex;
}
.nav-menu {
    position: fixed;
    left: -100%;
    top: 85px;
    flex-direction: column;
    background-color: var(--dark-navy);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 1rem 0;
}

.logo-text h1 {
    font-size: 1.1rem;
}

.logo-text span {
    font-size: 0.75rem;
}

.logo-image {
    width: 60px;
    height: 60px;
}

.hero-title {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.section-title {
    font-size: 2.2rem;
}

.footer-content {
    grid-template-columns: 1fr;
}

section {
    padding: 60px 0;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}
.admin-nav-link {
      color: #f59e0b !important;
      font-weight: 600;
    }
    .admin-nav-link:hover {
      color: #fbbf24 !important;
    }
/* ═══════════════════════════════════════════════
   RESPONSIVE STYLES
═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .about-content { flex-direction: column; }
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .tournament-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { flex-direction: column; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navbar */
    .nav-container { padding: 0 16px; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 9999;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { text-align: center; }
    .nav-link { font-size: 20px; }
    .hamburger { display: flex; z-index: 10000; }
    .logo-image { width: 40px !important; height: 40px !important; }
    .logo-text h1 { font-size: 11px; }
    .logo-text h3 { font-size: 9px; }

    /* Hero */
    .hero-title { font-size: 28px; line-height: 1.2; }
    .hero-subtitle { font-size: 14px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-badge { font-size: 11px; }
    .btn { padding: 12px 24px; font-size: 14px; }

    /* Sections */
    .section-title { font-size: 24px; }
    .about-features { grid-template-columns: 1fr; }
    .feature-card { padding: 20px; }

    /* Tournament */
    .tournament-card { padding: 20px; }
    .tournament-header { flex-direction: column; gap: 8px; }
    .tournament-details { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Contact */
    .contact-content { flex-direction: column; gap: 24px; }
    .contact-form-container { width: 100%; }
    .contact-form input,
    .contact-form textarea { width: 100%; box-sizing: border-box; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .social-links { justify-content: center; }

    /* Modal */
    .modal-content {
        width: 95vw;
        max-height: 90vh;
        margin: 5vh auto;
        overflow-y: auto;
    }
    .registration-form-wrapper iframe {
        width: 100%;
        height: 80vh;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title { font-size: 22px; }
    .hero-subtitle { font-size: 13px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .container { padding: 0 12px; }
    .section-title { font-size: 20px; }
    .btn-large { width: 100%; text-align: center; }
    .footer-content { padding: 0 12px; }
}
/* ═══════════════════════════════════════════════
   RESPONSIVE STYLES
═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .about-content { flex-direction: column; }
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .tournament-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { flex-direction: column; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navbar */
    .nav-container { padding: 0 16px; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 9999;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { text-align: center; }
    .nav-link { font-size: 20px; }
    .hamburger { display: flex; z-index: 10000; }
    .logo-image { width: 40px !important; height: 40px !important; }
    .logo-text h1 { font-size: 11px; }
    .logo-text h3 { font-size: 9px; }

    /* Hero */
    .hero-title { font-size: 28px; line-height: 1.2; }
    .hero-subtitle { font-size: 14px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-badge { font-size: 11px; }
    .btn { padding: 12px 24px; font-size: 14px; }

    /* Sections */
    .section-title { font-size: 24px; }
    .about-features { grid-template-columns: 1fr; }
    .feature-card { padding: 20px; }

    /* Tournament */
    .tournament-card { padding: 20px; }
    .tournament-header { flex-direction: column; gap: 8px; }
    .tournament-details { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Contact */
    .contact-content { flex-direction: column; gap: 24px; }
    .contact-form-container { width: 100%; }
    .contact-form input,
    .contact-form textarea { width: 100%; box-sizing: border-box; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .social-links { justify-content: center; }

    /* Modal */
    .modal-content {
        width: 95vw;
        max-height: 90vh;
        margin: 5vh auto;
        overflow-y: auto;
    }
    .registration-form-wrapper iframe {
        width: 100%;
        height: 80vh;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title { font-size: 22px; }
    .hero-subtitle { font-size: 13px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .container { padding: 0 12px; }
    .section-title { font-size: 20px; }
    .btn-large { width: 100%; text-align: center; }
    .footer-content { padding: 0 12px; }
}
}