:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-accent: #60a5fa;
    --border-color: #334155;
    --card-bg: #1e293b;
    --hero-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-accent: #2563eb;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --hero-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    padding: 120px 0 80px;
    background: var(--hero-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--text-accent);
    color: white;
}

.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

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

.btn-secondary:hover {
    background: var(--text-accent);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.placeholder-image::before {
    content: '🚀';
    position: absolute;
    font-size: 6rem;
    z-index: 1;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.about {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.leadership-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.leadership-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.leader {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.leader strong {
    color: var(--text-accent);
    font-weight: 600;
}

.about-image .placeholder-image {
    width: 100%;
    height: 350px;
}

.services {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.youtube-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.youtube-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.youtube-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3);
}

.youtube-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff4444);
}

.youtube-creator h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.youtube-creator p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.subscriber-count {
    margin: 1.5rem 0;
}

.sub-count-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.youtube-icon {
    font-size: 3rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.youtube-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.youtube-stats .stat {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.update-notice {
    margin-top: 0.5rem;
}

.update-notice small {
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

.esports-achievements {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.esports-achievements h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.esports-achievements p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ast-founding {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.ast-founding h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ast-founding p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.days-highlight {
    font-weight: 700;
    color: var(--text-accent);
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.rocket-league-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.achievements-content {
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

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

.champion-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.champion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.3);
}

.champion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ff6b35);
}

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

.champion-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.champion-title {
    font-size: 1rem;
    color: var(--text-accent);
    font-weight: 600;
    margin-bottom: 1.5rem !important;
}

.champion-card p:not(.champion-title) {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.tournament-highlights {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 215, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tournament-highlights h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.tournament-highlights p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact {
    padding: 80px 0;
    background: var(--bg-primary);
}

.leadership-contact {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.leader-contact {
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    min-width: 250px;
}

.leader-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.leader-contact p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.leader-contact strong {
    color: var(--text-accent);
    font-weight: 600;
}

.footer {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #2563eb;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.3rem 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .leadership-section,
    .esports-achievements,
    .ast-founding {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .leadership-contact {
        gap: 2rem;
        flex-direction: column;
    }
    
    .leader-contact {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat {
        padding: 1rem;
        background: var(--card-bg);
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 14px 24px;
        font-size: 1rem;
        text-align: center;
    }
    
    .placeholder-image {
        width: 100%;
        max-width: 320px;
        height: 220px;
        margin: 0 auto;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .youtube-card {
        padding: 2rem 1.5rem;
    }
    
    .youtube-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .champions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .champion-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .tournament-highlights {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .hero {
        padding: 90px 0 50px;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .services-grid,
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card,
    .youtube-card {
        padding: 1.5rem 1rem;
        margin: 0;
    }
    
    .service-card h3,
    .youtube-creator h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p,
    .youtube-creator p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat h4 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .leadership-section h4,
    .esports-achievements h4,
    .ast-founding h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .leader {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .leader-contact {
        width: 100%;
        margin: 0;
        padding: 1.5rem;
    }
    
    .leader-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .leader-contact p {
        font-size: 0.95rem;
    }
    
    .placeholder-image {
        width: 100%;
        max-width: 280px;
        height: 180px;
        margin: 0 auto;
    }
    
    .placeholder-image::before {
        font-size: 3.5rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 220px;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-card p {
        font-size: 0.85rem;
    }
    
    .champion-card {
        padding: 1.5rem 1rem;
        margin: 0;
    }
    
    .champion-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .champion-title {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }
    
    .champion-card p:not(.champion-title) {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .champion-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .tournament-highlights {
        padding: 1.5rem 1rem;
        margin: 0;
    }
    
    .tournament-highlights h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .tournament-highlights p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.6rem;
    }
    
    .hamburger {
        padding: 8px;
    }
    
    .theme-toggle {
        font-size: 1.3rem;
        padding: 8px;
    }
    
    /* Improved touch targets */
    .hamburger,
    .theme-toggle,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile */
    .about,
    .services,
    .youtube-section,
    .rocket-league-section,
    .contact {
        padding: 60px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* Mobile-specific improvements */
@media (hover: none) {
    .service-card:hover,
    .youtube-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        max-width: 200px;
    }
    
    .placeholder-image {
        width: 100%;
        max-width: 250px;
        height: 150px;
    }
    
    .service-card,
    .youtube-card,
    .leader-contact,
    .champion-card,
    .tournament-highlights {
        margin: 0;
        padding: 1.2rem 0.8rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .stat-card {
        padding: 1rem 0.8rem;
    }
    
    .stat-card h3 {
        font-size: 1.6rem;
    }
    
    .champion-card h3 {
        font-size: 1.2rem;
    }
    
    .tournament-highlights h3 {
        font-size: 1.2rem;
    }
}

/* General mobile improvements */
@media (max-width: 768px) {
    /* Prevent text size adjustment on orientation change */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Smooth scrolling for mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better button and link spacing for touch */
    .nav-menu a {
        padding: 0.8rem 1rem;
        display: block;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .hamburger:active {
        background-color: var(--bg-secondary);
    }
    
    .theme-toggle {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.3rem;
        border-radius: 8px;
    }
    
    .theme-toggle:active {
        background-color: var(--bg-tertiary);
    }
    
    /* Better card interaction on mobile */
    .service-card,
    .youtube-card,
    .champion-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .service-card:active,
    .youtube-card:active,
    .champion-card:active {
        transform: scale(0.98);
    }
    
    /* Improved scrolling for sections */
    .hero,
    .about,
    .services,
    .youtube-section,
    .rocket-league-section,
    .contact {
        scroll-margin-top: 80px;
    }
}