
:root {
    --primary-color: #3a86ff;
    --secondary-color: #2563eb;
    --accent-color: #3ccfcf;
    --dark-bg: #0a0e17;
    --darker-bg: #070b12;
    --card-bg: rgba(17, 24, 39, 0.301);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-accent: #64748b;
    --gradient-blue: linear-gradient(135deg, #3a86ff 0%, #38bdf8 100%);
    --gradient-purple: linear-gradient(135deg, #1e40af 0%, #3a86ff 100%);
    --gradient-cyan: linear-gradient(135deg, #3ccfcf 0%, #06b6d4 100%);
    --gradient-hightcyan: #3ccfcf00;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* header */
header {
    background-color: var(--darker-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Mobile dd  */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 16px;
        background-color: var(--darker-bg);
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 12px 20px rgba(0,0,0,0.3);
        z-index: 200;
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.auth-buttons .sign-in-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-buttons .sign-in-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    --hero-bg-x: 70%;
    --hero-bg-y: 30%;
    padding: 100px 0;
    background: radial-gradient(farthest-corner at var(--hero-bg-x) var(--hero-bg-y), rgba(26, 54, 93, 0.9) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 30% 30%, rgba(58, 134, 255, 0.08), transparent 70%);
    mix-blend-mode: soft-light;
    z-index: 0;
}

/* Hero animation punkte uns so */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.35), transparent),
                      radial-gradient(2px 2px at 60% 20%, rgba(255,255,255,0.25), transparent),
                      radial-gradient(2px 2px at 80% 70%, rgba(255,255,255,0.3), transparent),
                      radial-gradient(2px 2px at 35% 80%, rgba(255,255,255,0.2), transparent);
    animation: floatDots 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes floatDots {
    0% { transform: translateY(0) translateX(0); opacity: 0.9; }
    100% { transform: translateY(-12px) translateX(8px); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero h1 span {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.discord-btn {
    background-color: #5865F2;
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.discord-btn:hover {
    background-color: #4752c4;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Live Stats anzeigen */
.live-stats {
    padding: 30px 0;
    background-color: rgba(7, 11, 18, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* How It Works */
.how-it-works {
    background-color: var(--gradient-hightcyan);
    padding: 80px 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--gradient-hightcyan);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(78, 161, 255, 0.3) 0%, rgba(78, 161, 255, 0) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.live-stat-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-stat-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Animation states for Live Stats numbers */
.live-stats .live-stats-grid .live-stat-card h2 {
    position: relative;
}

.live-stats .live-stats-grid .live-stat-card h2.counting {
    animation: statCountGlow 0.85s ease-in-out infinite alternate;
    text-shadow:
        0 0 6px rgba(58,134,255,0.30),
        0 0 12px rgba(56,189,248,0.22);
}

.live-stats .live-stats-grid .live-stat-card h2.epic-finish {
    animation: graffitiPop 1.05s cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

@keyframes statCountGlow {
    0% {
        transform: translateZ(0) scale(1);
        filter: brightness(1);
    }
    100% {
        transform: translateZ(0) scale(1.025);
        filter: brightness(1.08);
        text-shadow:
            0 0 10px rgba(58,134,255,0.40),
            0 0 18px rgba(56,189,248,0.28);
    }
}

@keyframes graffitiPop {
    0% {
        transform: scale(1);
        letter-spacing: normal;
        text-shadow:
            0 0 0 rgba(58,134,255,0),
            0 0 0 rgba(56,189,248,0);
    }
    35% {
        transform: scale(1.10);
        letter-spacing: 0.5px;
        text-shadow:
            0 0 14px rgba(58,134,255,0.45),
            0 0 26px rgba(56,189,248,0.32);
    }
    70% {
        transform: scale(0.98);
        letter-spacing: 0.2px;
        text-shadow:
            0 0 8px rgba(58,134,255,0.28),
            0 0 16px rgba(56,189,248,0.20);
    }
    100% {
        transform: scale(1);
        letter-spacing: normal;
        text-shadow:
            0 0 6px rgba(58,134,255,0.22),
            0 0 12px rgba(56,189,248,0.18);
    }
}

.live-stat-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Stats anzeige */
.stats {
    padding: 60px 0;
    background-color: rgba(7, 11, 18, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.stat-card h2 span {
    font-size: 24px;
}

.stat-card p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-card .stat-subtitle {
    font-size: 14px;
    color: var(--text-accent);
}

/* Features anzeige */
.features {
    padding: 100px 0;
    background-color: rgba(10, 14, 23, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 6px rgba(58, 134, 255, 0.35), 0 0 12px rgba(56, 189, 248, 0.18);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Latest Scripts anzeige mit kopieren */
.latest-scripts {
    padding: 80px 0;
    background-color: rgba(7, 11, 18, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.script-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.script-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.script-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.script-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.script-tag {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(60, 207, 207, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.script-tag.new::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 6px;
}

.script-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.script-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.script-tags .tag {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(58, 134, 255, 0.15);
    color: var(--text-secondary);
}

.script-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.script-author {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.script-author i {
    margin-right: 8px;
    color: var(--text-accent);
}

.copy-script-btn {
    background-color: rgba(58, 134, 255, 0.15);
    color: var(--text-primary);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.copy-script-btn i {
    margin-right: 8px;
}

.copy-script-btn:hover {
    background-color: rgba(58, 134, 255, 0.3);
}

.feature-card, .benefit-card, .testimonial-card, .script-card, .stat-card, .step-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px) saturate(115%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Glow Effekt Credits: @fe33_tree */
.feature-card::before, .benefit-card::before, .testimonial-card::before, .script-card::before, .stat-card::before, .step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px; /* Stärke für die border also umrandung */
    background: linear-gradient(135deg, rgba(58,134,255,0.4), rgba(56,189,248,0.35));
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before, .benefit-card:hover::before, .testimonial-card:hover::before, .script-card:hover::before, .stat-card:hover::before, .step-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.feature-icon.blue {
    background: var(--gradient-blue);
}

.feature-icon.purple {
    background: var(--gradient-purple);
}

.feature-icon.cyan {
    background: var(--gradient-cyan);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Why Choose anzeige */
.why-choose {
    padding: 100px 0;
    background-color: rgba(7, 11, 18, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 30% 30%, rgba(58, 134, 255, 0.08), transparent 70%);
    mix-blend-mode: soft-light;
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    background: var(--gradient-blue);
    color: white;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: var(--gradient-purple);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: var(--gradient-cyan);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Testimonials anzeige */
.testimonials {
    padding: 100px 0;
    background-color: rgba(10, 14, 23, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-accent);
}

/* CTA btn anziege */
.cta {
    padding: 100px 0;
    background: linear-gradient(to bottom right, var(--darker-bg), #1a365d);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, rgba(58, 134, 255, 0) 70%);
    z-index: 0;
}

.cta .section-title, .cta .section-subtitle {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.outline-btn {
    background-color: transparent;
    color: #ffd166;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffd166;
    transition: all 0.3s ease;
    display: inline-block;
}

.outline-btn:hover {
    background-color: rgba(255, 209, 102, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 209, 102, 0.25);
}

/* Footer  */
footer {
    background-color: var(--darker-bg);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    height: 32px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-accent);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Anmiations Credits: @fe33_tree */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .benefit-card, .testimonial-card, .stat-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
}

.feature-card.animate, .benefit-card.animate, .testimonial-card.animate, .stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero h1, .hero p, .hero-buttons {
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid, .features-grid, .benefits-grid, .testimonial-grid, .scripts-grid, .steps-grid, .live-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-column {
        min-width: 120px;
    }
}

@media (max-width: 640px) {
    .stats-grid, .features-grid, .benefits-grid, .testimonial-grid, .scripts-grid, .steps-grid, .live-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
/* Button Shine Effekt Credits: @fe33_tree */
.primary-btn, .outline-btn, .discord-btn {
    position: relative;
    overflow: hidden;
}

.primary-btn::after, .outline-btn::after, .discord-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

.primary-btn:hover::after, .outline-btn:hover::after, .discord-btn:hover::after {
    animation: shineSweep 1.2s ease;
}

@keyframes shineSweep {
    0% { left: -120%; }
    100% { left: 140%; }
}

/* Discord Pulse animation shine effekt mit drinne */
.discord-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(closest-side, rgba(88,101,242,0.45), rgba(88,101,242,0));
    filter: blur(10px);
    opacity: 0.25;
    animation: discordPulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes discordPulse {
    0% { opacity: 0.15; transform: scale(0.98); }
    50% { opacity: 0.5; transform: scale(1.02); }
    100% { opacity: 0.15; transform: scale(0.98); }
}

/* Scroll Reveal Basis und anim stats*/
.feature-card, .benefit-card, .testimonial-card, .script-card, .stat-card, .step-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.feature-card.animate, .benefit-card.animate, .testimonial-card.animate, .script-card.animate, .stat-card.animate, .step-card.animate {
    opacity: 1;
    transform: translateY(0);
}
/* anderes */
/* Gradient Scanline backround für anim */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 20% 20%, rgba(58,134,255,0.08), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(56,189,248,0.08), transparent 40%),
                linear-gradient(120deg, rgba(58,134,255,0.06), rgba(56,189,248,0.06));
    backdrop-filter: blur(0.2px);
    animation: bgPulse 22s ease-in-out infinite alternate;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        rgba(0,0,0,0) 3px,
        rgba(0,0,0,0) 4px
    );
    mix-blend-mode: soft-light;
    opacity: 0.4;
}
@keyframes bgPulse {
    0% { filter: hue-rotate(0deg) saturate(1); }
    100% { filter: hue-rotate(20deg) saturate(1.15); }
}

/* Hintergrund für Partikel im oberen Hero */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    opacity: 0.55;
}

/* Glitch effekt als basis für anim */
.glitch { position: relative; display: inline-block; }
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0; width: 100%;
    overflow: hidden; pointer-events: none;
}
.glitch::before {
    text-shadow: -2px 0 rgba(58,134,255,0.8);
    clip-path: inset(0 0 45% 0);
    animation: glitchTop 2.2s infinite steps(20);
}
.glitch::after {
    text-shadow: 2px 0 rgba(56,189,248,0.85);
    clip-path: inset(55% 0 0 0);
    animation: glitchBottom 2.2s infinite steps(18) reverse;
}
@keyframes glitchTop {
    0% { transform: translate(0,0); }
    20% { transform: translate(-1px,-1px); }
    40% { transform: translate(1px,1px); }
    60% { transform: translate(-2px,1px); }
    80% { transform: translate(2px,-1px); }
    100% { transform: translate(0,0); }
}
@keyframes glitchBottom {
    0% { transform: translate(0,0); }
    25% { transform: translate(1px,-1px); }
    50% { transform: translate(-1px,1px); }
    75% { transform: translate(1px,2px); }
    100% { transform: translate(0,0); }
}

/* Neon Glow bei Hover */
.discord-btn:hover { filter: drop-shadow(0 0 6px #5865F2) drop-shadow(0 0 18px #5865F2); }
.copy-script-btn:hover { filter: drop-shadow(0 0 6px rgba(60,207,207,0.8)) drop-shadow(0 0 16px rgba(60,207,207,0.6)); }

/* Tilt*/
.feature-card, .benefit-card, .testimonial-card, .stat-card { will-change: transform; transform-style: preserve-3d; }

/* Sichtbarkeits */
.live-stats, .how-it-works, .stats, .features, .latest-scripts, .why-choose, .testimonials, .cta, footer {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

/* rendern */
.hero { content-visibility: visible; contain-intrinsic-size: auto; }

/* btn der CSS Variablen las performs */
.primary-btn, .secondary-btn, .discord-btn, .outline-btn {
    transform: translate(var(--tx, 0px), var(--ty, 0px));
    will-change: transform;
}
.primary-btn:hover, .secondary-btn:hover, .discord-btn:hover, .outline-btn:hover {
    transform: translate(var(--tx, 0px), calc(var(--ty, 0px) - 3px));
}

/* Layer im oberen Hero */
.hero .aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(60% 40% at 20% 80%, rgba(58,134,255,0.12), transparent 60%),
                radial-gradient(40% 60% at 80% 20%, rgba(56,189,248,0.12), transparent 60%),
                conic-gradient(from 220deg at 50% 50%, rgba(58,134,255,0.1), rgba(56,189,248,0.08), rgba(60,207,207,0.1), rgba(58,134,255,0.1));
    animation: auroraMove 28s linear infinite;
    opacity: 0.6;
}
@keyframes auroraMove {
    0%   { transform: translate3d(0,0,0) scale(1); filter: hue-rotate(0deg); }
    50%  { transform: translate3d(1.5%, -1.5%, 0) scale(1.02); filter: hue-rotate(15deg); }
    100% { transform: translate3d(0,0,0) scale(1); filter: hue-rotate(0deg); }
}

/* nicht gute Geräte */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .hero::after, .discord-btn::before, .glitch::before, .glitch::after, .hero .aurora { animation: none !important; }
    #hero-particles { opacity: 0.3; }
}

/* konfetti zeug bei scripts anzeige */
.confetti-piece { position: fixed; width: 8px; height: 12px; opacity: 0.9; pointer-events: none; z-index: 9999; will-change: transform, opacity; }
/* Supporter-Reihe unter Latest Scripts */
.supporters { margin-top: 40px; }
.supporters-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.supporters-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.supporters-list li {
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.supporters-list li:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(58, 134, 255, 0.5);
}

@media (max-width: 768px) {
    .supporters-list { flex-wrap: wrap; justify-content: center; gap: 16px; }
}