/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 0.5rem 0;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.logo-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #39ff14;
    margin-top: -5px;
    letter-spacing: 2px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #39ff14);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #00d4ff !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(45deg, #00d4ff, #39ff14, #8a2be2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out forwards, gradientShift 3s ease-in-out infinite;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cccccc;
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    color: #0a0a0a;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    animation: fadeIn 1s ease-out 1.2s both;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Mobile Stats Section */
.mobile-stats {
    display: none;
    padding: 2rem 0;
    background: #111111;
}

.mobile-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
}

.mobile-stat-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-stat-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.mobile-stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    display: block;
    margin-bottom: 0.75rem;
}

.mobile-stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
    line-height: 1.2;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #111111;
}

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

.about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
}

.about-image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.about-image:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(57, 255, 20, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 15px;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-family: 'Orbitron', monospace;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #cccccc;
    margin-bottom: 0;
}

.centered-heading {
    text-align: center;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(57, 255, 20, 0.1) 50%, 
        rgba(138, 43, 226, 0.1) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-background {
    opacity: 1;
    transform: scale(1.1);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.service-card:hover .service-title {
    color: #39ff14;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    transform: translateY(-5px);
}

.service-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    color: #ffffff;
    transform: translateY(-3px);
}

.service-hover-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem 3rem;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.8) 70%, 
        transparent 100%);
    backdrop-filter: blur(15px);
}

.service-card:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.service-details h4 {
    font-family: 'Orbitron', monospace;
    color: #39ff14;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.service-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.service-details li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.service-details li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-cta {
    text-align: center;
}

.service-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    background: linear-gradient(45deg, #39ff14, #00d4ff);
}

/* Hover Effects for Different Services */
.service-card[data-service="tournament"]:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.service-card[data-service="equipment"]:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.service-card[data-service="event"]:hover {
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.2);
}

.service-card[data-service="production"]:hover {
    border-color: rgba(57, 255, 20, 0.6);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
}

/* Marketing Section */
.marketing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.marketing-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.marketing-strategies-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.marketing-strategies-row:first-of-type {
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.marketing-strategies-row:last-of-type {
    justify-content: space-evenly;
}

.marketing-strategy-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    flex: 1;
}

.marketing-strategies-row:first-of-type .marketing-strategy-card {
    max-width: calc(33.333% - 1.33rem);
}

.marketing-strategies-row:last-of-type .marketing-strategy-card {
    max-width: calc(50% - 1rem);
}

.marketing-strategy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
}

.marketing-hero {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.marketing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.marketing-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 10px 1rem;
    width: 90%;
    max-width: 600px;
}

.marketing-hero-overlay h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.875rem;
    color: #00d4ff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.marketing-hero-overlay p {
    font-size: 1.375rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.strategy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.strategy-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    border-radius: 15px;
    flex-shrink: 0;
}

.strategy-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00d4ff;
    margin: 0;
}

.strategy-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 2rem;
}

.strategy-examples h4 {
    font-family: 'Orbitron', monospace;
    color: #39ff14;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.strategy-examples ul {
    list-style: none;
    padding: 0;
}

.strategy-examples li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.strategy-examples li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.8rem;
    top: 0.1rem;
}

/* Championships Section */
.championships-section {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.championships-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #39ff14;
    text-align: center;
    margin-bottom: 1rem;
}

.championships-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.championship-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.championship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(57, 255, 20, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.championship-card:hover::before {
    opacity: 1;
}

.championship-card:hover {
    transform: translateY(-8px);
    border-color: rgba(57, 255, 20, 0.6);
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.2);
}

.championship-card > * {
    position: relative;
    z-index: 2;
}

.championship-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.championship-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
}

.championship-card:hover .championship-image {
    transform: scale(1.05);
    border-color: rgba(57, 255, 20, 0.6);
}

.championship-card h4 {
    font-family: 'Orbitron', monospace;
    color: #39ff14;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.championship-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.championship-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #39ff14;
    text-decoration: none;
    border: 2px solid #39ff14;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.championship-link:hover {
    background: #39ff14;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.partner-item {
    position: relative;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-item:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(57, 255, 20, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.partner-item:hover .partner-overlay {
    opacity: 1;
}

.partner-item:nth-child(4) .partner-logo-img {
    transform: scale(1.5);
}

.partner-item:nth-child(6) .partner-logo-img {
    transform: scale(0.75);
}
/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #111111;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.contact-image-container {
    margin-bottom: 2rem;
}

.contact-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.contact-item h3 {
    font-family: 'Orbitron', monospace;
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(57, 255, 20, 0.05));
    border-radius: 25px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(57, 255, 20, 0.05) 50%, 
        rgba(138, 43, 226, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.contact-form-container:hover::before {
    opacity: 1;
}

.contact-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.5rem;
}

.contact-form-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    outline: none;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.form-group input:not(:placeholder-shown),
.form-group select:not([value=""]),
.form-group textarea:not(:placeholder-shown) {
    border-color: rgba(57, 255, 20, 0.5);
}

.form-group label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: #cccccc;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: transparent;
    padding: 0;
    transform-origin: left top;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0.5rem;
    left: 1rem;
    font-size: 0.75rem;
    color: #00d4ff;
    background: #111111;
    padding: 0 0.25rem;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
    transform: scale(0.85);
    border-radius: 4px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    padding-top: 2rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    position: relative;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #00d4ff, #39ff14);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
    overflow: hidden;
    margin-top: 1rem;
    align-self: center;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #39ff14, #00d4ff);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-spinner {
    opacity: 1;
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.95), rgba(0, 212, 255, 0.95));
    color: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.success-message h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #0a0a0a;
}

.email-direct {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem !important;
    color: #0a0a0a !important;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin: 1rem 0 !important;
}

.anti-spam-notice {
    font-size: 0.9rem !important;
    opacity: 0.8;
    font-style: italic;
}

.close-success-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.8);
    color: #ffffff;
    border: 2px solid #0a0a0a;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.close-success-btn:hover {
    background: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 10, 10, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: #00d4ff;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 99999;
    border-top: 3px solid #00d4ff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content p {
    margin: 0 0 15px 0;
    font-size: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    color: #0a0a0a;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.cookie-btn-decline:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    padding-top: 100px;
    padding-bottom: 50px;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.back-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.legal-content {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-section {
    margin-bottom: 3rem;
    background: rgba(0, 212, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.legal-section:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.legal-section h3 {
    font-family: 'Orbitron', monospace;
    color: #39ff14;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-section h3::before {
    content: '▶';
    color: #00d4ff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.legal-section:hover h3::before {
    transform: rotate(90deg);
}

.legal-section p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.legal-section:hover p {
    color: #ffffff;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-section li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.legal-section li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 1rem;
    top: 0;
    transition: all 0.3s ease;
}

.legal-section:hover li {
    color: #ffffff;
    transform: translateX(5px);
}

.legal-section:hover li::before {
    color: #39ff14;
    transform: scale(1.2);
}

/* 404 Page Styles */
.error-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.error-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite alternate;
    z-index: -1;
}

.error-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.error-code {
    font-family: 'Orbitron', monospace;
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #39ff14, #8a2be2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.error-message {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.error-btn-primary {
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    color: #0a0a0a;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.error-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.error-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00d4ff;
}

.error-btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.error-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
}

.particle:nth-child(2n) {
    background: #39ff14;
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    background: #8a2be2;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) translateX(-10px) rotate(180deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) translateX(5px) rotate(270deg); 
        opacity: 0.9;
    }
}

/* Navigation for 404 page */
.navbar-404 {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-text-404 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.logo-subtitle-404 {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #39ff14;
    margin-top: -5px;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section - Move content 30px down */
    .hero-content {
        transform: translateY(30px);
    }
    
    .hero-stats {
        display: none;
    }
    
    .mobile-stats {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
        min-height: 350px;
    }
    
    .service-hover-content {
        position: static;
        opacity: 1;
        transform: none;
        background: none;
        backdrop-filter: none;
        padding: 2rem 0 0;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .championships-grid {
        grid-template-columns: 1fr;
    }
    
    .marketing-strategy-card {
        padding: 2rem;
    }
    
    .strategy-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .championships-section {
        padding: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .marketing-strategies-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .marketing-strategies-row:first-of-type .marketing-strategy-card,
    .marketing-strategies-row:last-of-type .marketing-strategy-card {
        max-width: 100%;
    }
    
    .championship-card {
        padding: 1.5rem;
    }
    
    .championships-title {
        font-size: 1.5rem;
    }
    
    .about-image-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 200px;
    }
    
    .marketing-hero {
        height: 320px;
    }
    
    .marketing-hero-overlay h3 {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .marketing-hero-overlay p {
        font-size: 1.375rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .marketing-hero-overlay {
        padding: 10px 1.5rem;
        width: 95%;
    }
    
    .championship-image {
        height: 120px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer - Move "All rights reserved" to new line */
    .footer-bottom p {
        line-height: 1.8;
    }
    
    /* Legal pages mobile */
    .legal-container {
        padding: 0 1rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .legal-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .legal-section p {
        font-size: 1.05rem;
    }
    
    /* Cookie banner mobile */
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* 404 page mobile */
    .error-content {
        padding: 1rem;
    }
    
    .error-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .about,
    .services,
    .partners,
    .contact {
        padding: 4rem 0;
    }
    
    .service-card,
    .contact-form-container {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .championship-card {
        padding: 1.5rem;
    }
    
    .championships-title {
        font-size: 1.5rem;
    }
    
    .about-image-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 200px;
    }
    
    .marketing-hero {
        height: 280px;
    }
    
    .marketing-hero-overlay h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
    
    .marketing-hero-overlay p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .marketing-hero-overlay {
        padding: 2rem 1rem;
    }
    
    .marketing-strategies-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .marketing-strategies-row:first-of-type .marketing-strategy-card,
    .marketing-strategies-row:last-of-type .marketing-strategy-card {
        max-width: 100%;
    }
    
    .strategy-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .championship-image {
        height: 120px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations and Effects */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
}

.logo-text {
    animation: glow 2s ease-in-out infinite;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}