/* Global Styles */
:root {
    --primary-color: #8a2be2;
    --secondary-color: #4b0082;
    --accent-color: #ff6b6b;
    --danger-color: #ff3131;
    --warning-color: #ffc107;
    --success-color: #28a745;
    --dark-bg: #1a0033;
    --text-light: #ffffff;
    --text-muted: #b3b3cc;
    --card-bg: rgba(75, 0, 130, 0.3);
    --gradient-start: #2b0057;
    --gradient-end: #120029;
    --highlight-color: #ffcc00;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(26, 0, 51, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(to right, #9d50bb, #6e48aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar .nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-primary-outline {
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: url('../images/background.webp') center center / cover no-repeat;
    background-attachment: fixed;
    animation: backgroundScroll 60s linear infinite; /* Slowed down from 30s to 60s */
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 0, 51, 0.9);
    z-index: 0;
}

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

.logo-container {
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.main-logo {
    max-width: 220px;
    height: auto;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.15), transparent 70%);
    z-index: -1;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffdd00; /* Brighter yellow color for better visibility */
    position: relative;
    display: inline-block;
    z-index: 5;
}

.glow-heading {
    animation: glow-animation 3s infinite alternate;
    background: linear-gradient(to right, #ffdd00, #ffa500);
    -webkit-background-clip: text;
    background-clip: text;
}

.glow-heading .text-white {
    color: #ffffff;
}

.glow-heading .highlight-text {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7), 0 0 60px rgba(255, 255, 255, 0.4);
    }
}

.new-release-badge {
    background: linear-gradient(to right, #ff9500, #ffcc00);
    color: #000;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
    animation: badge-pulse 2s infinite;
    position: relative;
    z-index: 10;
    margin-bottom: 15px;
    font-size: 1rem;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Video container styling */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container .ratio {
    border-radius: 12px;
    background-color: #000;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 95%;
        margin: 0 auto;
    }
}

/* Typewriter effect */
.word {
    display: inline-block;
    opacity: 0;
    overflow: hidden;
    margin-right: 0.3rem;
}

.word.active {
    opacity: 1;
    animation: word-appear 0.5s ease-out forwards;
}

.word.last-active {
    border-right: .15em solid #ffdd00;
    animation: word-appear 0.5s ease-out forwards, blink-caret .75s step-end infinite;
}

@keyframes word-appear {
    from { 
        transform: translateY(20px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ffdd00; }
}

/* Money splash effect */
.money-splash {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.money-particle {
    position: absolute;
    width: 20px;
    height: 40px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/2489/2489756.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fall 3s ease-in forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-section h2 {
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
}

.glow-badge {
    display: inline-block;
    background: linear-gradient(to right, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, #FFD700, #FFA500); /* Gold to Orange gradient */
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #000; /* Dark text for better contrast on yellow */
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.8s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.6);
    background: linear-gradient(to right, #FFC107, #FF8C00); /* Brighter gold to darker orange on hover */
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.animated-btn {
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    position: relative;
    overflow: hidden;
}

@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.6);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    }
}

/* Float animation is defined above */

/* Video Container */
.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.warning-text {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-weight: 500;
    text-align: left;
    max-width: 800px;
    margin: 1rem auto;
}

/* AI Tools Section */
.ai-tools-section {
    margin: 2rem auto;
}

.ai-tools-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    margin: 30px 0;
    background: transparent;
    border-radius: 10px;
}

.ai-tools-slider::before,
.ai-tools-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ai-tools-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), transparent);
}

.ai-tools-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0), transparent);
}

.ai-tools-container {
    display: flex;
    gap: 30px;
    animation: scrollLogos 20s linear infinite;
    padding: 20px 0;
    position: relative;
}

.ai-tool-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ai-tool-logo:hover {
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Stats Section */
.stats-section {
    background-color: rgba(26, 0, 51, 0.5);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.stat-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: inline-block;
}

.percent {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #9d50bb, #6e48aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.section-header h2 {
    margin-bottom: 1rem;
    background: linear-gradient(to right, #9d50bb, #6e48aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    background-color: rgba(255, 107, 107, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-card .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.secure-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.secure-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secure-badges i {
    color: var(--success-color);
}

.final-scarcity {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Warning Alert Styling */
.warning-alert {
    background-color: rgba(42, 8, 69, 0.95);
    border-left: 4px solid #ff9900;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.warning-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.warning-icon {
    color: #ff9900;
    font-size: 2.5rem;
}

.warning-content {
    flex: 1;
}

.warning-text {
    color: #ff9900;
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, var(--gradient-end), var(--gradient-start));
    padding: 5rem 0;
}

.testimonial-header {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

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

.testimonial-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card.active {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1;
}

.rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.author-name {
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-title {
    margin-bottom: 0.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--success-color);
}

/* Verified Image Container and Overlay */
.verified-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.verified-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(to right, #ffd700, #ffaa00);
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-overlay i {
    color: #000;
}

/* Social Proof Wall - Full Width with Blur Animation */
.social-proof-wall-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background-color: var(--dark-bg);
    margin: 3rem 0;
}

.social-proof-wall-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.2));
    filter: blur(20px);
    opacity: 0.7;
    animation: blurWave 8s ease-in-out infinite alternate;
    z-index: 1;
}

.social-proof-wall-section h2 {
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.social-proof-wall-section .highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

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

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.social-proof-wall-item {
    position: relative;
    height: 100%;
    z-index: 2;
    margin-bottom: 15px;
    animation: floatAnimation 15s ease-in-out infinite;
}

.social-proof-wall-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

/* Adjust the staggered timing for each item to create a wave effect */
.social-proof-wall-section .row > div:nth-child(2) .social-proof-wall-item {
    animation-delay: -3s;
}

.social-proof-wall-section .row > div:nth-child(3) .social-proof-wall-item {
    animation-delay: -6s;
}

.social-proof-wall-section .row > div:nth-child(4) .social-proof-wall-item {
    animation-delay: -9s;
}

.social-proof-wall-section .row > div:nth-child(5) .social-proof-wall-item {
    animation-delay: -12s;
}

@keyframes blurWave {
    0% {
        opacity: 0.5;
        filter: blur(15px);
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.7;
        filter: blur(20px);
    }
    100% {
        opacity: 0.5;
        filter: blur(15px);
        background-position: 100% 100%;
    }
}

@media (max-width: 992px) {
    .social-proof-wall-grid {
        flex-direction: column;
    }
    
    .social-proof-wall-item {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .social-proof-wall-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .social-proof-wall-item {
        margin-bottom: 25px;
    }
    
    .social-proof-wall-section h2 {
        font-size: 1.8rem;
    }
}

.verified-badge i {
    margin-right: 0.3rem;
}

.results-proof {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.results-proof:hover {
    transform: scale(1.03);
}

/* Pricing Section */
.pricing-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15), transparent 70%);
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    text-align: center;
    color: white;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 1rem;
}

.current-price {
    color: white;
    position: relative;
}

.current-price::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.pricing-features li i {
    color: var(--accent-color);
    margin-right: 1rem;
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.countdown-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.2rem;
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-icon {
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.2), transparent 70%);
}

/* Footer */
.footer {
    background-color: rgba(18, 0, 41, 0.8);
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.footer h4, .footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 30px 0 0 30px;
    padding: 0.8rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.8rem 1.5rem;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    margin-bottom: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Highlight Text */
.highlight-text {
    color: var(--highlight-color);
    font-weight: 700;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Urgent Timer Styles */
.urgent-timer-container {
    background: rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.urgent-text {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.urgent-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-unit span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.unit-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Category Showcase Styles */
.category-showcase {
    padding: 5rem 0;
}

.category-section {
    background: rgba(75, 0, 130, 0.15);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.restricted-badge {
    display: inline-block;
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-list li i {
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.danger-list li i {
    color: var(--danger-color);
}

.category-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.category-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Jailbreak Section Styles */
.jailbreak-section {
    background: linear-gradient(135deg, rgba(30, 0, 60, 0.8), rgba(80, 0, 0, 0.6));
    border: 2px solid var(--danger-color);
}

.danger-text {
    color: var(--danger-color);
    font-weight: 800;
}

.restricted-label {
    background: var(--danger-color);
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* Video container and premium overlay styles */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.premium-video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 1;
    pointer-events: none;
}

.premium-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.premium-text {
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    background: linear-gradient(to right, #ffffff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.restricted-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.restricted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.restricted-icon {
    font-size: 3rem;
    color: var(--danger-color);
    margin-bottom: 1rem;
}

/* Email Modal Styles */
.modal-content {
    background-color: var(--card-bg);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .btn-close {
    color: white;
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body input.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
}

.modal-body input.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
    color: white;
}

.modal-body input.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
    
    .cta-buttons .btn-outline-light {
        margin-left: 0 !important;
    }
    
    .stat-card, .feature-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .countdown-item span {
        font-size: 1.2rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .copyright {
        text-align: center;
    }
}
