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

:root {
    /* Rocket League Colors */
    --primary: 28 90% 55%; /* Orange */
    --primary-glow: 28 95% 65%;
    --secondary: 220 90% 56%; /* Blue */
    --secondary-glow: 220 95% 70%;
    --background: 222 47% 10%;
    --foreground: 213 31% 91%;
    --light_blue: 220 95% 60%;
    --dark_blue: 220 90% 50%;

    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(28 90% 55%), hsl(28 95% 65%));
    --gradient-secondary: linear-gradient(135deg, hsl(220 90% 56%), hsl(220 95% 70%));
    --gradient-hero: linear-gradient(135deg, hsl(222 47% 11%) 0%, hsl(220 30% 20%) 100%);
    
    /* Shadows */
    --shadow-glow-orange: 0 0 40px hsl(28 95% 65% / 0.4);
    --shadow-glow-blue: 0 0 40px hsl(220 95% 70% / 0.4);
    --shadow-elegant: 0 10px 30px -10px hsl(28 90% 55% / 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    min-height: 100vh;
}


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

.hero-section {
    position: relative;
    width: 100%;
    height: 650px;
    padding: 8rem 250px 6rem;
    overflow: hidden;
    background: transparent; /* Hintergrund liegt im ::before */
}

.hero-section {
    position: relative;
    width: 100%;
    height: 650px;
    padding: 8rem 250px 6rem;
    overflow: hidden;

    /* Hintergrundbild */
    background: var(--bg) center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;

    /* Farbverlauf-Overlay mit Transparenz nach rechts */
    background: linear-gradient(
        to right,
        hsl(var(--background) / 0.9) 0%,     /* Dunkles Blau links */
        hsl(var(--background) / 0.775) 25%,     /* Dunkles Blau links */
        hsl(var(--background) / 0.5) 45%,     /* Dunkles Blau links */
        rgba(6, 22, 65, 0.325) 50%, /* leicht helleres Blau */
        hsl(var(--primary) / 0.2) 75%,      /* Übergang in Orange */
        hsl(var(--primary-glow) / 0.0) 100%  /* transparent rechts */
    );

    z-index: 0;
    pointer-events: none;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--foreground) / 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(28 90% 55% / 0.2), hsl(220 90% 56% / 0.2));
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: var(--transition-smooth);
}

.hero-image:hover {
    transform: scale(1.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.btn-discord {
    background: hsl(235, 100%, 80%);
    color: white;
    box-shadow: 0 0 20px hsl(235 86% 65% / 0.3);
}

.btn-discord:hover {
    background: hsl(235 86% 85%);
    box-shadow: 0 0 30px hsl(235 86% 65% / 0.5);
    transform: translateY(-2px);
}

.btn-hero {
    background: hsl(var(--background) / 0.1);
    color: white;
    border: 1px solid hsl(var(--foreground) / 0.2);
    backdrop-filter: blur(10px);
}

.btn-hero:hover {
    background: hsl(var(--foreground) / 0.2);
    border-color: hsl(var(--foreground) / 0.3);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: hsl(var(--background));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: linear-gradient(135deg, hsl(var(--background) / 0.5), hsl(var(--background) / 0.8));
    border: 1px solid hsl(var(--foreground) / 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: hsl(var(--primary));
    box-shadow: var(--shadow-glow-orange);
    transform: translateY(-5px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.feature-description {
    font-size: 1rem;
    color: hsl(var(--foreground) / 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, hsl(28 90% 55% / 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: hsl(var(--foreground) / 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: hsl(var(--background));
    border-top: 1px solid hsl(var(--foreground) / 0.1);
}

.footer-text {
    text-align: center;
    color: hsl(var(--foreground) / 0.6);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


