@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

@font-face {
    font-family: 'Kick';
    src: url('/branding/kick-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BoosterPolygonCP';
    src: url('/branding/BoosterPolygonCP-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --volt-green: #53FC18;
    --iced-cyan: #00FFFF;
    --bowel-brown: #4C4014;
    --black: #000000;
    --white: #FFFFFF;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(83, 252, 24, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-volt: linear-gradient(135deg, #53FC18, #00FFFF);
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    --shadow-glow: 0 0 30px rgba(83, 252, 24, 0.3);
    --shadow-cyan: 0 0 30px rgba(0, 255, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.2;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'BoosterPolygonCP', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
}

p, span, a, li, label, input, textarea, button {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    letter-spacing: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(83, 252, 24, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(83, 252, 24, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(83, 252, 24, 0.5));
    transition: filter 0.3s ease;
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.8));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--volt-green);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-volt);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--volt-green);
}

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

.nav-link-cta {
    background: var(--gradient-volt);
    color: var(--black);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(83, 252, 24, 0.5);
    color: var(--black);
}

.main-content {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at center, rgba(83, 252, 24, 0.1) 0%, transparent 70%),
        var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background:
        url('/branding/pattern-collage.png'),
        radial-gradient(circle at 30% 50%, rgba(83, 252, 24, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 255, 0.2) 0%, transparent 40%);
    background-size: cover, auto, auto;
    background-position: center, 30% 50%, 70% 70%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.35;
    }
    100% {
        opacity: 0.45;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid var(--volt-green);
    color: var(--volt-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'BoosterPolygonCP', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    background: var(--gradient-volt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(83, 252, 24, 0.5));
    text-transform: uppercase;
    letter-spacing: 0;
}

.kick-word {
    font-family: 'Kick', sans-serif;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    letter-spacing: 0;
}

.btn-primary {
    background: var(--gradient-volt);
    color: var(--black);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(83, 252, 24, 0.6);
}

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

.btn-secondary:hover {
    background: rgba(83, 252, 24, 0.1);
    box-shadow: inset 0 0 20px rgba(83, 252, 24, 0.3);
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-family: 'BoosterPolygonCP', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-volt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: 0;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-volt);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--volt-green);
    box-shadow: 0 20px 40px rgba(83, 252, 24, 0.2);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.1), rgba(0, 255, 255, 0.1));
    border: 1px solid rgba(83, 252, 24, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--volt-green);
    filter: drop-shadow(0 0 8px currentColor);
    transition: all 0.3s ease;
}

.feature-card:nth-child(even) .feature-icon {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(83, 252, 24, 0.1));
    border-color: rgba(0, 255, 255, 0.3);
}

.feature-card:nth-child(even) .feature-icon svg {
    color: var(--iced-cyan);
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.2), rgba(0, 255, 255, 0.2));
    border-color: rgba(83, 252, 24, 0.5);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.3);
}

.feature-card:nth-child(even):hover .feature-icon {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 15px currentColor);
    transform: rotate(5deg);
}

.inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inline-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px currentColor);
    transition: all 0.3s ease;
}

.inline-icon-small svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 3px currentColor);
    transition: all 0.3s ease;
}

.stream-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-icon svg {
    width: 64px;
    height: 64px;
    color: var(--volt-green);
    filter: drop-shadow(0 0 10px currentColor);
    transition: all 0.3s ease;
}

.stream-icon.featured svg {
    color: var(--volt-green);
    filter: drop-shadow(0 0 15px currentColor);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 25px currentColor);
    }
}

.stream-card:hover .stream-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px currentColor);
}

.feature-title {
    font-family: 'BoosterPolygonCP', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--volt-green);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.2;
    letter-spacing: 0;
}

.main-footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--volt-green);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--volt-green);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--volt-green);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-links,
.footer-info {
    list-style: none;
}

.footer-links li,
.footer-info li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--volt-green);
}

.footer-info li {
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-volt);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}