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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 100%);
    color: #e8e8e8;
    line-height: 1.6;
}

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

/* Header Image */
.header-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, rgba(10,0,21,0) 0%, rgba(10,0,21,0.8) 70%, rgba(10,0,21,1) 100%),
                url('../img/eroosynth/library_hero.png') center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.header-logo {
    font-size: 5em;
    font-weight: bold;
    background: linear-gradient(135deg, #e320ff 0%, #b817cc 50%, #e320ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
    text-shadow: 0 0 40px rgba(227, 32, 255, 0.5);
    letter-spacing: 8px;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: rgba(0,0,0,0.3);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #e320ff 0%, #b817cc 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95em;
    font-weight: bold;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(227, 32, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(227, 32, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(227, 32, 255, 0.6); }
}

h1 {
    font-size: 3.8em;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #e320ff, #b817cc, #e320ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(227, 32, 255, 0.3);
}

.subheadline {
    font-size: 1.4em;
    color: #c8c8c8;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.highlight-text {
    color: #e320ff;
    font-weight: 600;
}

/* Video Container */
.video-container {
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(227, 32, 255, 0.3);
    border: 3px solid #e320ff;
    position: relative;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e320ff, #b817cc, #e320ff);
    border-radius: 20px;
    z-index: -1;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 550px;
    display: block;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e320ff 0%, #b817cc 100%);
    color: white;
    padding: 22px 60px;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin: 35px 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(227, 32, 255, 0.5);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(227, 32, 255, 0.7);
}

/* Key Numbers Section */
.key-numbers {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(227, 32, 255, 0.1) 0%, rgba(26, 10, 46, 0.3) 100%);
    margin: 60px 0;
}

.key-numbers h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 20px;
    color: #e320ff;
}

.key-numbers-subtitle {
    text-align: center;
    color: #c8c8c8;
    font-size: 1.2em;
    margin-bottom: 60px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
    padding: 30px;
    background: rgba(227, 32, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(227, 32, 255, 0.2);
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-10px);
    border-color: #e320ff;
    box-shadow: 0 20px 40px rgba(227, 32, 255, 0.3);
}

.big-number {
    font-size: 3.5em;
    font-weight: bold;
    color: #e320ff;
    line-height: 1;
    margin-bottom: 10px;
}

.number-label {
    color: #c8c8c8;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 80px 20px;
}

.features h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 20px;
    color: #e320ff;
}

.features-subtitle {
    text-align: center;
    color: #c8c8c8;
    font-size: 1.2em;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(227, 32, 255, 0.05) 0%, rgba(26, 10, 46, 0.3) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(227, 32, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 32, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #e320ff;
    box-shadow: 0 20px 40px rgba(227, 32, 255, 0.3);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #e320ff;
}

.feature-card p {
    color: #c8c8c8;
    line-height: 1.8;
    font-size: 1.05em;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: rgba(0,0,0,0.3);
    margin: 60px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    color: #e320ff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
}

.gallery-video
{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 3px solid rgba(227, 32, 255, 0.3);
    transition: all 0.3s ease;
    background: #000;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 32, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #e320ff;
    box-shadow: 0 20px 50px rgba(227, 32, 255, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Social Proof */
.social-proof {
    text-align: center;
    padding: 80px 20px;
}

.social-proof h2 {
    font-size: 3em;
    margin-bottom: 60px;
    color: #e320ff;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    color: #e320ff;
    text-shadow: 0 0 20px rgba(227, 32, 255, 0.5);
}

.stat-label {
    color: #c8c8c8;
    font-size: 1.2em;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(227, 32, 255, 0.05) 0%, rgba(26, 10, 46, 0.3) 100%);
    margin: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    color: #e320ff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(227, 32, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid #e320ff;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(227, 32, 255, 0.2);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #c8c8c8;
    line-height: 1.8;
}

.testimonial-author {
    color: #e320ff;
    font-weight: bold;
    font-size: 1.05em;
}

.testimonial-rating {
    color: #e320ff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    color: #e320ff;
}

.faq-item {
    background: rgba(227, 32, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(227, 32, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e320ff;
    box-shadow: 0 10px 30px rgba(227, 32, 255, 0.2);
}

.faq-question {
    font-size: 1.3em;
    font-weight: bold;
    color: #e320ff;
    margin-bottom: 15px;
}

.faq-answer {
    color: #c8c8c8;
    line-height: 1.8;
    font-size: 1.05em;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(227, 32, 255, 0.15) 0%, rgba(184, 23, 204, 0.15) 100%);
    border-radius: 30px;
    margin: 60px 20px;
    border: 2px solid rgba(227, 32, 255, 0.3);
}

.final-cta h2 {
    font-size: 3.2em;
    margin-bottom: 25px;
    color: #e320ff;
}

.final-cta p {
    font-size: 1.4em;
    color: #c8c8c8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-text {
    color: #e320ff;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 25px;
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid rgba(227, 32, 255, 0.2);
    color: #666;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e320ff;
}

/* Responsive */
@media (max-width: 768px) {
    .header-image {
        height: 300px;
    }

    .header-logo {
        font-size: 3em;
        letter-spacing: 4px;
    }

    h1 {
        font-size: 2.5em;
    }

    .subheadline {
        font-size: 1.2em;
    }

    .video-container iframe,
    .video-container video {
        height: 200px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.2em;
    }

    .features h2,
    .gallery h2,
    .testimonials h2,
    .faq h2,
    .social-proof h2,
    .key-numbers h2 {
        font-size: 2.2em;
    }

    .stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .big-number {
        font-size: 3em;
    }

    .features-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}