/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff006e;
    --secondary-color: #8338ec;
    --accent-color: #fb5607;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-1: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    --gradient-2: linear-gradient(135deg, #fb5607 0%, #ff006e 100%);
    --shadow-glow: 0 0 20px rgba(255, 0, 110, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    background-image: url('/static/imgs/hotwife-who-loves-to-be-spitroasted-v0-lx3f3ff9518g1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.hero-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-badge span {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content {
    padding: 60px 0;
}

/* Intro Section */
.intro-section {
    margin-bottom: 80px;
}

.intro-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 0, 110, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Videos Section */
.videos-section {
    margin: 80px 0;
}

.videos-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Carrossel */
.carousel-container {
    position: relative;
    margin: 40px auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    min-height: 400px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 25px;
}

.carousel-slide {
    flex: 0 0 calc(50% - 12.5px);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Mobile adjustments for carousel */
@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100% !important;
        margin: 0;
        padding: 0;
    }
    
    .carousel-track {
        gap: 0 !important;
    }
}

.video-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    aspect-ratio: 16 / 9;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    flex: 1;
}

.video-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.premium-badge {
    background: var(--gradient-2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    background: var(--card-bg);
    border: 2px solid rgba(255, 0, 110, 0.3);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.more-videos {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    margin: 80px 0;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.benefits-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--darker-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-color);
}

.check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    margin: 80px 0;
}

.cta-box {
    background: var(--gradient-1);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-subtext {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.telegram-button {
    background: #0088cc;
    color: white;
    border: 2px solid #0088cc;
}

.telegram-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5);
    background: #006ba3;
    border-color: #006ba3;
    color: white;
}

.telegram-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.button-icon {
    font-size: 1.5rem;
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Trust Section */
.trust-section {
    margin: 60px 0;
    text-align: center;
}

.trust-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item span {
    font-size: 2.5rem;
}

.trust-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 110, 0.2);
    margin-top: 80px;
}

.footer p {
    color: var(--text-secondary);
    margin: 5px 0;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        color: #ffffff;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.9),
            0 0 8px rgba(0, 0, 0, 0.7),
            0 0 15px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(255, 255, 255, 0.4),
            0 0 35px rgba(255, 255, 255, 0.3);
        filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.9),
            0 0 10px rgba(0, 0, 0, 0.6);
    }
    
    .hero-badge {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .video-card {
        aspect-ratio: unset;
        height: 500px;
        min-height: 500px;
    }
    
    .preview-video {
        height: 100%;
        object-fit: contain;
        background: var(--darker-bg);
    }
    
    .carousel-wrapper {
        height: 500px;
    }
    
    .telegram-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .benefits-section {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .intro-section h2,
    .videos-section h2,
    .benefits-section h2 {
        font-size: 2rem;
    }
}

