* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --brown: #8B4513;
    --black: #1a1a1a;
    --dark-brown: #654321;
    --light-gold: #F4E4BC;
    --white: #ffffff;
    --gray: #f5f5f5;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation - Fixed for Desktop */
.navbar {
    background: linear-gradient(135deg, var(--black) 0%, var(--brown) 100%);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--gold);
    padding: 2px;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.logo-text h2 {
    font-family: 'Orbitron', monospace;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1;
}

/* Desktop Navigation - Always Visible */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

.bar {
    width: 22px;
    height: 2px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--brown) 50%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 2px solid var(--gold);
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-controller {
    font-size: 8rem;
    color: var(--gold);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Club Stats Section */
.club-stats-section {
    padding: 80px 0;
    background: var(--gray);
}

.stats-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.iframe-container {
    margin: 0 auto 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.iframe-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--brown) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.iframe-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f57; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #28ca42; }

.iframe-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--gold);
}

.iframe-actions {
    display: flex;
    gap: 0.5rem;
}

.external-link,
.refresh-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.external-link:hover,
.refresh-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
    background: var(--white);
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.iframe-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.iframe-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.iframe-loading p {
    color: var(--brown);
    font-weight: 500;
}

.stats-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--brown);
    line-height: 1.6;
}

/* Gameplay Video Section */
.gameplay-section {
    padding: 80px 0;
    background: var(--white);
}

.gameplay-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: var(--black);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
}

.video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    pointer-events: all;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--light-gold);
}

.video-info {
    background: var(--gray);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.video-info h3 {
    font-family: 'Orbitron', monospace;
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brown);
    font-weight: 500;
}

.stat i {
    color: var(--gold);
    width: 20px;
}

.video-description {
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--gold);
    color: var(--black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Section */
.stats {
    background: var(--gray);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--brown);
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--brown));
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.player-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.player-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.player-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.position {
    color: var(--brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Matches Section */
.matches {
    padding: 80px 0;
    background: var(--gray);
}

.matches-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.match-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr 100px;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.match-card:hover {
    transform: translateX(10px);
}

.match-card.upcoming {
    border-left: 4px solid var(--gold);
}

.match-date {
    font-weight: 600;
    color: var(--brown);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.team-home, .team-away {
    color: var(--black);
}

.score {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 900;
}

.match-status {
    text-align: center;
    padding: 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.match-status.won {
    background: #d4edda;
    color: #155724;
}

/* News Section */
.news {
    padding: 80px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.news-date {
    color: var(--brown);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--black);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--brown);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--brown) 100%);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 30px;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--gold);
    padding: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-logo h3 {
    font-family: 'Orbitron', monospace;
    color: var(--gold);
    margin: 0;
}

.footer-logo p {
    margin: 0;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--brown);
    opacity: 0.7;
}

/* MOBILE RESPONSIVE DESIGN - Only applies to mobile screens */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .logo-text h2 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--black) 0%, var(--brown) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 4px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-logo {
        margin: 0 auto 1rem;
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn {
        min-width: 140px;
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    
    .game-controller {
        font-size: 4rem;
    }
    
    /* Mobile Sections */
    .club-stats-section,
    .gameplay-section,
    .team,
    .matches,
    .news,
    .contact {
        padding: 60px 0;
    }
    
    .stats {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        width: 80px;
        height: 3px;
    }
    
    /* Mobile Iframe */
    .iframe-wrapper {
        height: 400px;
    }
    
    .iframe-header {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .iframe-title {
        font-size: 0.85rem;
        order: 2;
        flex: 1;
        justify-content: center;
    }
    
    .iframe-controls {
        order: 1;
    }
    
    .iframe-actions {
        order: 3;
    }
    
    .external-link,
    .refresh-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .stats-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card i {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    /* Mobile Video */
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .stat {
        font-size: 0.9rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .tag {
        font-size: 0.8rem;
    }
    
    /* Mobile Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Mobile Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .player-card {
        padding: 1.5rem;
    }
    
    .player-image {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .player-card h3 {
        font-size: 1.1rem;
    }
    
    .position {
        font-size: 0.9rem;
    }
    
    .rating {
        font-size: 1rem;
    }
    
    /* Mobile Matches */
    .match-card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
        padding: 1rem;
    }
    
    .match-date {
        font-size: 0.9rem;
    }
    
    .match-teams {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .team-home, .team-away {
        font-size: 0.9rem;
    }
    
    .score {
        font-size: 1.1rem;
    }
    
    .match-status {
        font-size: 0.8rem;
    }
    
    /* Mobile News */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-image {
        height: 150px;
        font-size: 2.5rem;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .news-date {
        font-size: 0.8rem;
    }
    
    .news-content p {
        font-size: 0.9rem;
    }
    
    .read-more {
        font-size: 0.9rem;
    }
    
    /* Mobile Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        width: 25px;
    }
    
    .contact-item h4 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-img {
        width: 24px;
        height: 24px;
    }
    
    .footer-logo h3 {
        font-size: 1rem;
    }
    
    .footer-logo p {
        font-size: 0.8rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Tablet Responsive Design */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .iframe-wrapper {
        height: 600px;
    }
    
    .stats-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .match-card {
        grid-template-columns: 120px 1fr 100px;
        text-align: left;
    }
}
