* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Trebuchet MS', sans-serif;
    color: #fff;
}

body {
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
	filter: blur(2px);
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(255,23,68,0.3) 100%);
    z-index: 2;
}

/* Content */
.content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.content-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.title {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.subtitle {
    font-size: 24px;
    color: #ff1744;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 28px;
    font-weight: 900;
    color: #e7cc08;
    background: rgba(255,23,68,0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #ff1744;
}

.feature-text {
    font-size: 13px;
    color: #ddd;
    text-transform: uppercase;
    font-weight: bold;
}

/* Urgency */
.urgency {
    background: rgb(11 74 23 / 20%);
    border: 2px solid #ff1744;
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.urgency-text {
    font-size: 16px;
    color: #fff;
}

/* Content Preview */
.content-preview {
    margin: 25px 0;
}

.preview-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.preview-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: scale(1.2);
}

.preview-blur {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    filter: blur(3px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-size: cover;
    background-position: center;
}

.preview-item:hover .preview-blur {
    filter: blur(1px);
    border-color: #fff;
}

.preview-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.timer-highlight {
    font-size: 20px;
    font-weight: 900;
    color: #ff1744;
    font-family: 'Courier New', monospace;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(90deg, #ff1744, #ff6e40);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.6);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 23, 68, 0.8);
}

/* Testimonials */
.testimonials {
    margin-top: 40px;
    position: relative;
    min-height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 25px 60px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-content {
    flex: 1;
    position: relative;
    min-height: 80px;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: all;
}

.testimonial-text {
    font-size: 18px;
    color: #fff;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 500;
}

.testimonial-author {
    font-size: 15px;
    color: #ffff00;
    font-weight: bold;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.15);
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.age-verification:target {
    opacity: 1;
    pointer-events: all;
}

.age-modal {
    background: linear-gradient(135deg, #ff1744 0%, #d32f2f 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.7);
}

.age-modal h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
}

.age-modal p {
    font-size: 18px;
    margin-bottom: 35px;
}

.age-buttons {
    display: flex;
    gap: 15px;
}

.btn-yes, .btn-no {
    flex: 1;
    padding: 16px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-yes {
    background: #00ff00;
    color: #000;
}

.btn-yes:hover {
    background: #00dd00;
    transform: scale(1.05);
}

.btn-no {
    background: #ff0000;
    color: #fff;
}

.btn-no:hover {
    background: #dd0000;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .features {
        gap: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}
