/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}



/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

nav {
    padding: 1rem 0;
}

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

.logo-img {
    height: 57.5px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

.language-toggle {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.language-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.language-toggle:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.02) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes rainbow {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes basketball-bounce-new {
    0% {
        left: -50px;
        top: 80%;
        transform: translateY(-50%);
    }

    2.5% {
        left: 2.5%;
        top: 75%;
        transform: translateY(-50%);
    }

    5% {
        left: 5%;
        top: 70%;
        transform: translateY(-50%);
    }

    7.5% {
        left: 7.5%;
        top: 65%;
        transform: translateY(-50%);
    }

    10% {
        left: 10%;
        top: 60%;
        transform: translateY(-50%);
    }

    12.5% {
        left: 12.5%;
        top: 55%;
        transform: translateY(-50%);
    }

    15% {
        left: 15%;
        top: 50%;
        transform: translateY(-50%);
    }

    17.5% {
        left: 17.5%;
        top: 45%;
        transform: translateY(-50%);
    }

    20% {
        left: 20%;
        top: 40%;
        transform: translateY(-50%);
    }

    22.5% {
        left: 22.5%;
        top: 35%;
        transform: translateY(-50%);
    }

    25% {
        left: 25%;
        top: 30%;
        transform: translateY(-50%);
    }

    27.5% {
        left: 27.5%;
        top: 26%;
        transform: translateY(-50%);
    }

    30% {
        left: 30%;
        top: 22%;
        transform: translateY(-50%);
    }

    32.5% {
        left: 32.5%;
        top: 19%;
        transform: translateY(-50%);
    }

    35% {
        left: 35%;
        top: 16%;
        transform: translateY(-50%);
    }

    37.5% {
        left: 37.5%;
        top: 14%;
        transform: translateY(-50%);
    }

    40% {
        left: 40%;
        top: 12%;
        transform: translateY(-50%);
    }

    42.5% {
        left: 42.5%;
        top: 11%;
        transform: translateY(-50%);
    }

    45% {
        left: 45%;
        top: 10.5%;
        transform: translateY(-50%);
    }

    47.5% {
        left: 47.5%;
        top: 10.2%;
        transform: translateY(-50%);
    }

    50% {
        left: 50%;
        top: 10%;
        transform: translateY(-50%);
    }

    52.5% {
        left: 52.5%;
        top: 10.2%;
        transform: translateY(-50%);
    }

    55% {
        left: 55%;
        top: 10.5%;
        transform: translateY(-50%);
    }

    57.5% {
        left: 57.5%;
        top: 11%;
        transform: translateY(-50%);
    }

    60% {
        left: 60%;
        top: 12%;
        transform: translateY(-50%);
    }

    62.5% {
        left: 62.5%;
        top: 14%;
        transform: translateY(-50%);
    }

    65% {
        left: 65%;
        top: 16%;
        transform: translateY(-50%);
    }

    67.5% {
        left: 67.5%;
        top: 19%;
        transform: translateY(-50%);
    }

    70% {
        left: 70%;
        top: 22%;
        transform: translateY(-50%);
    }

    72.5% {
        left: 72.5%;
        top: 26%;
        transform: translateY(-50%);
    }

    75% {
        left: 75%;
        top: 30%;
        transform: translateY(-50%);
    }

    77.5% {
        left: 77.5%;
        top: 35%;
        transform: translateY(-50%);
    }

    80% {
        left: 80%;
        top: 40%;
        transform: translateY(-50%);
    }

    82.5% {
        left: 82.5%;
        top: 45%;
        transform: translateY(-50%);
    }

    85% {
        left: 85%;
        top: 50%;
        transform: translateY(-50%);
    }

    87.5% {
        left: 87.5%;
        top: 55%;
        transform: translateY(-50%);
    }

    90% {
        left: 90%;
        top: 60%;
        transform: translateY(-50%);
    }

    92.5% {
        left: 92.5%;
        top: 65%;
        transform: translateY(-50%);
    }

    95% {
        left: 95%;
        top: 70%;
        transform: translateY(-50%);
    }

    97.5% {
        left: 97.5%;
        top: 75%;
        transform: translateY(-50%);
    }

    100% {
        left: calc(100% + 50px);
        top: 80%;
        transform: translateY(-50%);
    }
}

@keyframes ball-spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(720deg);
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    color: #ff6b35;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat.has-easter-egg {
    cursor: default;
    /* No pointer cursor - instant hover on desktop, click on mobile */
}

/* Hero Sports Categories */
.hero-sports-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.sport-category-hero {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.sport-logo-hero {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sport-logo-img-hero {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.sport-category-hero h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.sport-category-hero p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}





/* Sections */
section {
    padding: 6rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.lead {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
}

.expertise-card.has-easter-egg {
    /* animation: subtle-pulse 3s ease-in-out infinite; */
}

@keyframes subtle-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.expertise-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
}

.service-card.has-easter-egg {
    /* animation: subtle-pulse 3s ease-in-out infinite; */
    /* animation-delay: 1.5s; */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Partnerships Section */
.partnerships {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partnership-card:hover::before {
    transform: scaleX(1);
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partnership-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.partnership-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.partnership-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.partnership-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.partnership-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.partnership-cta p {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 500;
}

.partnership-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partnership-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.partnership-cta .cta-button:hover::before {
    left: 100%;
}

.partnership-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Clients Section */
.clients {
    background: #f8f9fa;
}

.clients-showcase {
    margin-top: 4rem;
    text-align: center;
}

.clients-intro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.sport-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sport-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}

.sport-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sport-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sport-category:hover .sport-logo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sport-category:hover .sport-logo-img {
    transform: scale(1.1);
}

/* Keep old placeholder styles for backward compatibility */
.sport-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin: 0 auto 1.5rem auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sport-category:hover .sport-logo-placeholder {
    transform: scale(1.05);
}

.sport-logo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.sport-category:hover .sport-logo-placeholder::before {
    transform: rotate(45deg) translateX(100%);
}

.nhl-style {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.nba-style {
    background: linear-gradient(135deg, #c8102e, #ef4444);
}

.tennis-style {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}

.soccer-style {
    background: linear-gradient(135deg, #059669, #10b981);
}


.sport-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.sport-category p {
    color: #666;
    font-size: 0.9rem;
}

.confidentiality-note {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    display: inline-block;
}

.confidentiality-note p {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* People Section */
.people {
    background: white;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.person-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.person-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.person-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.person-img {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.person-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.person-title {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.person-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
}

/* Team section hover popup */
.people {
    position: relative;
}

.person-card {
    position: relative;
}

.person-content {
    position: relative;
    padding-bottom: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.linkedin-link {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #0077b5;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 119, 181, 0.3);
}

.linkedin-link:hover {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.4);
    background: #005885;
}

.linkedin-icon {
    width: 14px;
    height: 14px;
}

/* Contact Section */
.contact {
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.contact h2 {
    color: white;
}

.contact-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #ff6b35;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Easter Eggs */
.easter-egg {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    padding: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Consistent sizing for stat easter eggs */
.stat .easter-egg {
    min-width: 240px;
    width: max-content;
    max-width: 350px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(10px);
    text-align: center;
}

.stat .easter-egg.show,
.stat.is-active-card .easter-egg {
    transform: translateX(-50%) translateY(0);
}

/* Ensure cards have consistent positioning for easter eggs */
.expertise-card,
.service-card,
.person-card {
    position: relative;
}

.is-active-card {
    z-index: 2;
}

.easter-egg.show {
    opacity: 1;
    transform: translateY(0);
}

/* Section-level easter eggs */
.has-easter-egg {
    position: relative;
}

.has-easter-egg .easter-egg {
    position: absolute;
    bottom: auto;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Konami Code Indicator */
.konami-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.konami-indicator.show {
    opacity: 1;
    transform: translateX(0);
}



/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-center h4 {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.footer-partners-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-partner:hover {
    transform: translateY(-2px);
}

.footer-partner-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-partner:hover .footer-partner-logo {
    filter: brightness(0) invert(0.8);
}

.footer-logo-img {
    height: 56px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    align-items: start;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ff6b35;
}



.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    position: relative;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Mobile/tablet devices - make easter eggs clickable */
    .has-easter-egg {
        cursor: pointer;
    }

    .stat.has-easter-egg {
        cursor: pointer;
    }
}

/* Desktop hover optimizations */
@media (hover: hover) and (pointer: fine) {

    /* Desktop devices - instant hover, no click indication */
    .has-easter-egg {
        cursor: default;
    }

    .stat.has-easter-egg {
        cursor: default;
    }
}

/* Desktop-only styles to prevent text wrapping on larger screens */
@media (min-width: 769px) {
    .highlight {
        white-space: nowrap;
    }

    .hero-subtitle {
        white-space: nowrap;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        display: none;
    }

    .language-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-sports-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }



    .sport-category-hero {
        padding: 1rem;
    }

    .sport-logo-hero {
        width: 40px;
        height: 40px;
    }

    .sport-logo-img-hero {
        width: 28px;
        height: 28px;
    }

    .sport-category-hero h3 {
        font-size: 1rem;
    }

    .sport-category-hero p {
        font-size: 0.75rem;
    }

    .expertise-grid,
    .services-grid,
    .partnerships-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

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

    .hero-sports-categories {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .sport-category-hero {
        padding: 0.5rem;
        text-align: center;
    }

    .sport-logo-hero {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.25rem auto;
    }

    .sport-logo-img-hero {
        width: 30px;
        height: 30px;
    }

    .sport-category-hero h3 {
        font-size: 0.8rem;
        margin-bottom: 0.125rem;
    }

    .sport-category-hero p {
        display: none;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2rem;
    }
}