:root {
    --primary: #5865F2;
    --primary-dark: #4752C4;
    --success: #3BA55C;
    --danger: #ED4245;
    --warning: #FEE75C;
    --bg-primary: #0a0e27;
    --bg-secondary: #151932;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #B9BBBE;
    --text-muted: #72767D;
    --shadow: rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1329 100%);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(237, 66, 69, 0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-brand {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.nav-brand i {
    color: var(--primary);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
}

.btn-login {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}

/* Hero Section */
.hero {
padding: 7rem 2rem;
position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start; /* GEÄNDERT von center zu flex-start */
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 150px; /* NEU - klebt an dieser Position */
    margin-top: 100px;
}


.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
    display: flex;           /* NEU */
    align-items: center;     /* NEU - zentriert Logo und Text vertikal */
    gap: 1rem;              /* NEU - Abstand zwischen Logo und Text */
}

.hero-subtitle {
font-size: 1.3rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
line-height: 1.6;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* GEÄNDERT von center */
    align-items: center;
    position: relative;
    padding-top: 70px;
    min-height: 600px; /* NEU - gibt eine Mindesthöhe */
}

.hero-image img {
width: 100%;
max-width: 600px;
height: auto;
border-radius: 40px;
box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
transition: transform 0.3s ease;
}

.hero-image img:hover {
transform: translateY(-10px);
}

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

/* Responsive Anpassungen */
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
gap: 3rem;
}

.hero-image {
display: none;
}

.footer-content {
grid-template-columns: 1fr 1fr;
}
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7289DA 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

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

.btn-small {
    padding: 0.7rem 2.5rem;
    font-size: 0.9rem;
}

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

/* Section Styles */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.5));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

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

.game-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

.game-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.game-roast {
    color: var(--primary);
    font-style: italic;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-stats i {
    color: var(--danger);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.pricing-features .fa-check {
    color: var(--success);
}

.pricing-features .fa-times {
    color: var(--danger);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.testimonial-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-rating {
    color: #FFD700;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
}

.cta-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.cta-feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.heart {
    color: var(--danger);
    animation: heartbeat 1.5s ease infinite;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-bottom: 100px;
        padding: 0rem 2rem;
        }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}
.user-info {
display: flex;
align-items: center;
gap: 1rem;
}

.user-info img {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid var(--primary);
box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

a {
color: #6d7de3;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}

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

/* Page Header */
.subscription-header {
text-align: center;
margin-bottom: 3rem;
}

.subscription-header h1 {
font-size: 2.5rem;
margin-bottom: 0.75rem;
background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 800;
}

.subscription-header p {
font-size: 1.1rem;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 900px;
margin: 0 auto 3rem;
}

/* Pricing Card */
.pricing-card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border-radius: 20px;
padding: 2rem;
border: 2px solid var(--glass-border);
position: relative;
transition: all 0.3s ease;
}

.pricing-card:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
}

.pricing-card.premium {
border-color: rgba(255, 215, 0, 0.5);
background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
}

.pricing-card.premium:hover {
border-color: #FFD700;
box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Popular Badge */
.popular-badge {
position: absolute;
top: -10px;
right: 1.5rem;
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
color: #ffffff;
padding: 0.35rem 1rem;
border-radius: 15px;
font-size: 0.75rem;
font-weight: 700;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Card Header */
.pricing-header {
text-align: center;
margin-bottom: 1.5rem;
}

.pricing-icon {
width: 60px;
height: 60px;
margin: 0 auto 1rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
}

.pricing-card.free .pricing-icon {
background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.05) 100%);
border: 2px solid rgba(88, 101, 242, 0.5);
color: var(--primary);
}

.pricing-card.premium .pricing-icon {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
border: 2px solid rgba(255, 215, 0, 0.5);
color: #FFD700;
}

.pricing-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 0.25rem;
}

.pricing-card.premium .pricing-title {
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.pricing-subtitle {
color: var(--text-secondary);
font-size: 0.9rem;
}

/* Price */
.pricing-price {
text-align: center;
margin: 1.5rem 0;
padding: 1.25rem 0;
border-top: 1px solid var(--glass-border);
border-bottom: 1px solid var(--glass-border);
}

.price-amount {
font-size: 2.5rem;
font-weight: 800;
color: var(--text-primary);
line-height: 1;
}

.pricing-card.premium .price-amount {
color: #FFD700;
}

.price-period {
font-size: 1rem;
color: var(--text-secondary);
margin-left: 0.25rem;
}

.price-description {
color: var(--text-muted);
font-size: 0.8rem;
margin-top: 0.5rem;
}

/* Features List */
.features-list {
list-style: none;
margin-bottom: 1.5rem;
}

.feature-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 0.65rem 0;
color: var(--text-primary);
font-size: 0.9rem;
}

.feature-item:not(:last-child) {
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
color: var(--success);
font-size: 1rem;
min-width: 16px;
margin-top: 0.1rem;
}

.pricing-card.premium .feature-icon {
color: #FFD700;
}

.feature-icon.unavailable {
color: var(--text-muted);
opacity: 0.5;
}

.feature-text {
flex: 1;
line-height: 1.4;
}

.feature-item.unavailable .feature-text {
color: var(--text-muted);
text-decoration: line-through;
opacity: 0.5;
}

/* Buttons */
.pricing-btn {
width: 100%;
padding: 0.9rem 1.5rem;
border-radius: 12px;
font-weight: 700;
font-size: 1rem;
border: none;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
text-align: center;
text-decoration: none;
display: inline-block;
}

.pricing-btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.pricing-btn:hover::before {
width: 300px;
height: 300px;
}

.btn-free {
background: rgba(255, 255, 255, 0.05);
color: var(--text-primary);
border: 2px solid var(--glass-border);
}

.btn-free:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--primary);
transform: translateY(-2px);
}

.btn-premium {
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
color: #ffffff;
box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-premium:hover {
transform: translateY(-2px);
box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.pricing-btn i {
margin-left: 0.5rem;
position: relative;
z-index: 1;
}

/* FAQ Section */
.faq-section {
max-width: 800px;
margin: 3rem auto 0;
padding: 2rem;
background: var(--glass-bg);
backdrop-filter: blur(20px);
border-radius: 20px;
border: 1px solid var(--glass-border);
}

.faq-section h2 {
text-align: center;
font-size: 1.75rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.faq-item {
margin-bottom: 1.25rem;
padding: 1.25rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 12px;
border: 1px solid var(--glass-border);
transition: all 0.3s ease;
}

.faq-item:hover {
background: rgba(255, 255, 255, 0.05);
border-color: var(--primary);
}

.faq-question {
font-size: 1rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.faq-question i {
color: var(--primary);
font-size: 0.9rem;
}

.faq-answer {
color: var(--text-secondary);
font-size: 0.9rem;
line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
.subscription-header h1 {
font-size: 1.75rem;
}

.pricing-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.pricing-card {
padding: 1.5rem;
}

.price-amount {
font-size: 2rem;
}

.faq-section {
padding: 1.5rem;
}

.subscription-container {
margin: 3rem auto;
padding: 1rem;
}
}

.desktop-only {
display: block;
}

@media (max-width: 768px) {
.desktop-only {
display: none !important;
}
}


/* DISCORD TEST */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.discord-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.demo-header {
    background: linear-gradient(135deg, var(--primary) 0%, #7289DA 100%);
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.demo-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: absolute;
    top: -60px; /* Fixierte Position über dem Container */
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.3));
    white-space: nowrap;
    left: 25px;
}

.server-header {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 16px;
}

.channel-category {
    padding: 16px 8px 0 8px;
}

.category-header {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    margin-bottom: 4px;
    cursor: pointer;
    user-select: none;
}

.category-arrow {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    color: #96989d;
}

.category-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #96989d;
    letter-spacing: 0.5px;
}

.voice-channel {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    margin: 2px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.voice-channel:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
}

.voice-channel.active {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.1) 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.voice-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #80848e;
    filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.3));
}

.channel-name {
    font-size: 15px;
    color: #96989d;
    flex: 1;
    font-weight: 500;
}

.join-channel-btn {
    background: linear-gradient(135deg, var(--success) 0%, #2D8049 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 165, 92, 0.3);
}

.join-channel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 165, 92, 0.5);
}

.user-list {
    padding-left: 36px;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.user-item:hover {
    background: rgba(88, 101, 242, 0.1);
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    background: linear-gradient(135deg, #5865f2, #3ba55c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.user-name {
    font-size: 14px;
    color: #b9bbbe;
    font-weight: 500;
}

.bot-speaking {
    border-color: var(--success) !important;
    box-shadow: 0 0 20px rgba(59, 165, 92, 0.6);
    animation: speakPulse 0.5s ease-in-out infinite !important;
}

@keyframes speakPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 165, 92, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(87, 242, 135, 0.8);
    }
}

.speech-bubble {
    position: absolute;
    background: linear-gradient(135deg, #3BA55C, #2D8049);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(59, 165, 92, 0.6);
    font-size: 15px;
    font-weight: 600;
    max-width: 280px;
    z-index: 500;
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid #fff;
    white-space: normal;
    word-wrap: break-word;
}

/* Standard Voice User Bubble - GRÜN */
.speech-bubble {
    position: absolute;
    background: linear-gradient(135deg, #3BA55C, #2D8049);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(59, 165, 92, 0.6);
    font-size: 15px;
    font-weight: 600;
    max-width: 280px;
    z-index: 500;
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid #fff;
    white-space: normal;
    word-wrap: break-word;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #fff;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid #3BA55C;
}

/* Bot Roast Bubble - ROT */
.speech-bubble.bot-roast {
    background: linear-gradient(135deg, #ff4757, #ff6348);
    box-shadow: 0 8px 24px rgba(255, 71, 87, 0.6);
}

.speech-bubble.bot-roast::after {
    border-right-color: #ff4757;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: overlayFadeIn 0.5s ease;
}

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

.overlay.show {
    display: flex;
}

.cta-box {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

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

.cta-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.6));
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, #7289DA 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.6);
}

.user-avatar {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    margin-right: 8px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    transform: none !important; /* Überschreibt hero-image transform */
    animation: none !important; /* Entfernt hero-image Animationen */
}

/* Oder noch spezifischer */
.user-item .user-avatar {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    margin-right: 8px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    transform: none !important;
    animation: none !important;
}

.user-avatar.speaking {
    border-color: var(--success) !important;
    transition: border-color 0.3s ease;
}

/* Entferne alle anderen Speaking-Animationen */
.user-avatar.bot-speaking::before,
.user-avatar.speaking::before,
.user-avatar.bot-speaking::after,
.user-avatar.speaking::after {
    display: none;
}

.user-avatar.speaking,
.user-avatar.bot-speaking {
    border-color: var(--success) !important;
    border-width: 3px !important; /* Dicker Border (Standard ist 2px) */
    transition: border-color 0.3s ease;
}

/* Behalte nur die einfache Border-Animation */
@keyframes speakPulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 165, 92, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(59, 165, 92, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 165, 92, 0);
    }
}

/* End Screen Styles */
.end-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.end-screen-content {
    max-width: 800px;
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    animation: slideUpFade 0.6s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Logo Animation */
.end-logo-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.end-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.end-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Title & Description */
.end-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.end-title i {
    color: var(--danger);
    animation: fireFlicker 1.5s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.end-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

/* Feature Highlights - HORIZONTAL */
.end-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.end-feature {
    text-align: center;
}

.end-feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.4rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 2px solid rgba(88, 101, 242, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.end-feature:hover .end-feature-icon {
    transform: translateY(-3px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.end-feature span {
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
}

/* Main Content Grid - HORIZONTAL LAYOUT */
.end-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

/* CTA Buttons - LEFT SIDE */
.end-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.end-btn {
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.end-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.end-btn:hover::before {
    width: 300px;
    height: 300px;
}

.end-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7289DA 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.end-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

.end-btn-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: premiumPulse 2s ease-in-out infinite;
}

.end-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

@keyframes premiumPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7); }
}

.end-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    font-size: 0.8rem;
}

.end-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Premium Teaser - RIGHT SIDE */
.premium-teaser {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.premium-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.premium-badge-large {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.premium-badge-large i {
    animation: starSpin 3s linear infinite;
}

@keyframes starSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.premium-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.premium-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.75rem;
}

.premium-item i {
    color: #FFD700;
    font-size: 0.85rem;
}

/* Stats - HORIZONTAL AT BOTTOM */
.end-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.end-stat {
    text-align: center;
}

.end-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.end-stat-label {
    color: var(--text-secondary);
    font-size: 0.7rem;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(88, 101, 242, 0.8);
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .end-screen-content {
        padding: 1.25rem;
        margin: 1rem;
        max-width: 95%;
    }

    .end-main-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .end-title {
        font-size: 1.25rem;
    }

    .end-description {
        font-size: 0.85rem;
    }

    .end-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .end-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .end-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

/* RoastyBot Mascot Avatar */
.roasty-mascot {
    position: absolute;
    bottom: -20px;
    left: -100px;
    z-index: 2;
}

.roasty-mascot img {
    width: 120px !important;
    height: 120px !important;
    max-width: 120px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 8px 20px rgba(226, 4, 59, 0.4));
    transition: none !important;
    transform: none !important;
    animation: none !important;
}


@media (max-width: 1024px) {
    .roasty-mascot {
        display: none;
    }
}

/* Feature Showcase - Alternating Layout */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.feature-showcase:last-child {
    margin-bottom: 0;
}

/* Reverse layout: Image right, Text left */
.feature-showcase.reverse .feature-showcase-image {
    order: 2;
}

.feature-showcase.reverse .feature-showcase-content {
    order: 1;
}

.feature-showcase-image {
    position: relative;
}

.feature-showcase-image img {
    width: 100%;
    height: auto;
}

.feature-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-showcase-content h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.feature-showcase-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.feature-showcase-content .btn {
    align-self: flex-start;
}

/* Responsive - Mobile: Always Image first, then Text */
@media (max-width: 1024px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    /* Reset order on mobile - Image always first */
    .feature-showcase .feature-showcase-image {
        order: 1;
    }

    .feature-showcase .feature-showcase-content {
        order: 2;
    }

    .feature-showcase.reverse .feature-showcase-image {
        order: 1;
    }

    .feature-showcase.reverse .feature-showcase-content {
        order: 2;
    }

    .feature-showcase-content h3 {
        font-size: 1.5rem;
    }

    .feature-showcase-content p {
        font-size: 1rem;
    }
}