:root {
    --primary-color: #ccff00;
    /* Green requested */
    --primary-hover: #b3e600;
    --bg-color: #000000;
    --bg-secondary: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --offer-alert: #cc0000;
    /* Red for offer header */
    --font-heading: 'Inter', sans-serif;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-heading);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0;
    /* Hidden initially until JS activates */
    transition: opacity 0.5s ease;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

.hover-highlight {
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
    /* Allows transform if needed */
}

.hover-highlight:hover {
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.8), 0 0 40px rgba(204, 255, 0, 0.4);
    transform: scale(1.05);
    /* Slight pop */
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 255, 0, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
}

.btn-accent {
    font-size: 2rem;
    font-weight: 950;
    margin-left: 8px;
    vertical-align: baseline;
    display: inline-block;
    line-height: 1;
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.9rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(204, 255, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0);
    }
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background-image:
        /* Center Mask to fade the effect in the middle */
        radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 0%, transparent 70%),
        /* Web Pattern Top-Left */
        repeating-radial-gradient(circle at 0 0,
            transparent 0,
            transparent 29px,
            rgba(204, 255, 0, 0.05) 30px,
            rgba(204, 255, 0, 0.05) 31px),
        /* Web Pattern Top-Right */
        repeating-radial-gradient(circle at 100% 0,
            transparent 0,
            transparent 29px,
            rgba(204, 255, 0, 0.05) 30px,
            rgba(204, 255, 0, 0.05) 31px),
        /* Base Gradient */
        radial-gradient(circle at center, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.badge {
    background-color: rgba(204, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    display: inline-block;
    margin-bottom: 20px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 25px;
    /* Reduced bottom margin */
}

.video-container {
    max-width: 820px;
    /* Slight increase for better impact */
    margin: 0 auto 30px;
    /* Reduced top/bottom margin */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
}

/* Cinematic Intro Overlay */
.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.visible {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.intro-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.intro-overlay.visible .intro-content {
    transform: translateY(0);
}

.intro-text {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.intro-subtext {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.btn-intro {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 900;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Zoom effect */
.video-wrapper {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper.cinematic-zoom {
    transform: scale(1.05);
}


.scarcity-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ff4d4d;
    font-weight: 600;
}

/* Benefits Section */
/* Dynamically connected investigation board */
/* Dynamically connected investigation board */
.benefits-section {
    padding: 80px 0;
    position: relative;
    background-color: #0d0d0d;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('dark_corkboard_texture.png');
    background-size: cover;
    background-repeat: repeat;
    overflow: hidden;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    /* Vignette for depth */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.2rem;
    position: relative;
    z-index: 5;
}

.benefits-grid {
    position: relative;
    z-index: 2;
    display: grid;
    /* Force 4 columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: #151515;
    /* Dark Paper */
    color: #e0e0e0;
    padding: 30px;
    border-radius: 2px;
    /* Sharper corners for paper look */
    border: 1px solid #333;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    /* Drop shadow for depth */
    position: relative;
    transform-origin: center top;
    /* Rotate from pin */
}

/* Subtle Random Rotations for "Pinned" look */
.benefit-card:nth-child(1) {
    transform: rotate(-1.5deg);
}

.benefit-card:nth-child(2) {
    transform: rotate(1deg);
}

.benefit-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.benefit-card:nth-child(4) {
    transform: rotate(1.2deg);
}

.benefit-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    /* Straighter on hover */
    z-index: 10;
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(204, 255, 0, 0.1);
    background: #1a1a1a;
}

/* Pin Effect - Darker themed */
.benefit-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 35% 35%, #ff3333, #800000);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    z-index: 20;
    border: 1px solid #600000;
}

.benefit-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.2));
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: #fff;
}

.benefit-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}



/* Factories Section */
.factories-section {
    padding: 80px 0;
    /* Spider Web Pattern Simulation with Vignette */
    background:
        /* Center Mask to fade the effect in the middle */
        radial-gradient(circle at center, #ccff00 10%, transparent 80%),
        /* Web Pattern Top-Left */
        repeating-radial-gradient(circle at 0 0,
            transparent 0,
            transparent 29px,
            rgba(0, 0, 0, 0.15) 30px,
            /* Slightly stronger for corners */
            rgba(0, 0, 0, 0.15) 32px),
        /* Web Pattern Top-Right */
        repeating-radial-gradient(circle at 100% 0,
            transparent 0,
            transparent 29px,
            rgba(0, 0, 0, 0.15) 30px,
            rgba(0, 0, 0, 0.15) 32px),
        /* Base Gradient */
        linear-gradient(135deg, #ccff00 0%, #aadd00 100%);

    color: #000;
    /* Black text for contrast */
    position: relative;
    overflow: hidden;
}

/* Add a subtle texture/pattern overlay if needed, but keeping it clean for now */

.factories-section .section-title {
    color: #000;
    text-shadow: none;
    margin-bottom: 40px;
}

.factories-section .highlight {
    color: #000;
    text-decoration: underline;
}

.factories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.factory-item {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: transform 0.2s;
    border: none;
}

.factory-item::before {
    content: '✓';
    color: #ccff00;
    /* Green checkmark */
    background: #000;
    /* Black circle for check? Or just colored text. Screenshot checks are colored. */
    /* Let's make it look like the icon in the screenshot: Checkmark colored */
    font-weight: 900;
    font-size: 1.1rem;
}

/* Optional: Improve checkmark visual */


.factory-item:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.factories-footer {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    /* Black text */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    opacity: 0.8;
}

.factories-footer strong {
    color: #000;
    text-decoration: underline;
}

/* Modules Section */
.modules-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.modules-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.module-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.module-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.module-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-right: 30px;
    line-height: 1;
}

.module-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.module-info p {
    color: var(--text-muted);
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    position: relative;
    /* Removed image background for cleaner look as generally preferred */
}

.offer-card {
    background: #111;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(204, 255, 0, 0.15);
}

.offer-header {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    padding: 20px;
    text-align: center;
}

.offer-header p {
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.3rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-body {
    padding: 60px 40px;
    text-align: center;
}

.offer-body h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.offer-features {
    list-style: none;
    text-align: left;
    max-width: 450px;
    margin: 0 auto 40px;
}

.offer-features li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features li svg {
    width: 20px;
    height: 20px;
    color: #fff;
    /* White checks requested */
    flex-shrink: 0;
}

.price-container {
    margin-bottom: 40px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0;
    color: var(--text-color);
}

.new-price .highlight {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 5px;
}

.cash-price {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee svg {
    width: 20px;
    /* Smaller lock */
    height: 20px;
    color: var(--primary-color);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    height: 250px;
    /* Match card-image height */
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Center the image */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Hidden by default, show on hover */
}

.carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.profit-section {
    padding: 100px 0;
    background-color: #050505;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.profit-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.profit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 50, 0, 0.6);
    /* Darker green shadow */
}

.card-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profit-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.profit-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
    min-height: 2.8rem;
    /* Ensure 2 lines titles align correctly */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sales-channel {
    color: #fbbc04;
    /* Using the yellow/gold from reference for this specific element as requested 'igual' */
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 80px;
    /* Increased height for longer descriptions */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Standard property for compatibility */
    -webkit-box-orient: vertical;
}

.price-breakdown {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-value {
    color: #fff;
    font-weight: 700;
}

.profit-badge {
    background: #0f8536;
    background: linear-gradient(90deg, #1db954, #128c3d);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #2edc6a;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profit-badge span {
    font-size: 1.2rem;
    font-weight: 900;
    display: block;
}

.reviews-section {
    padding: 100px 0;
    position: relative;
    /* Clean dark background */
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.stat-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 15px;
    /* Reduced side padding */
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.1);
}

.stat-icon {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-card h3 {
    font-size: 1.8rem;
    /* Reduced from 2.2rem to prevent overflow */
    color: #fff;
    margin-bottom: 5px;
    font-weight: 900;
    word-break: break-word;
    /* Ensure it wraps if absolutely necessary */
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Google Reviews Style */
.google-reviews-container {
    margin-top: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.review-card {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-info {
    flex-grow: 1;
}

.review-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #202124;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 4px;
    font-weight: 600;
}

.stars {
    color: #fbbc04;
    font-size: 0.9rem;
    margin-top: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3c4043;
    margin: 0;
}

.review-result-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 10px;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.review-result-img:hover {
    filter: brightness(0.9);
}

.google-logo-small {
    height: 24px;
    width: 24px;
    opacity: 0.8;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4d4d4d;
    /* Google Grey */
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.footer-legal {
    font-size: 0.8rem;
    margin-top: 20px;
    opacity: 0.5;
}

.legal-notice-container {
    max-width: 800px;
    margin: 30px auto;
    text-align: justify;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.legal-notice-container h4 {
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

.legal-notice-container p {
    margin-bottom: 10px;
    line-height: 1.5;
}


/* Real Results Section */
.results-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin: 60px 0;
}

.result-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(204, 255, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.15);
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
}

.result-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(204, 255, 0, 0.3);
    z-index: 5;
}

.results-footer {
    max-width: 800px;
    margin: 0 auto;
}

.results-trust-text {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

.results-cta-text {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .authority-content {
        grid-template-columns: 1fr;
    }

    .authority-image {
        order: -1;
    }

    .btn-lg {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .module-item {
        flex-direction: column;
    }

    .module-number {
        margin-bottom: 10px;
    }

    .timer-box {
        font-size: 1.1rem;
    }

    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .results-trust-text {
        font-size: 1.2rem;
    }

    .results-cta-text {
        font-size: 1rem;
    }

    /* Mobile Header Adjustments */
    .logo-text {
        display: none;
    }

    .header-container {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .btn-sm {
        font-size: 0.8rem;
        padding: 8px 16px;
        white-space: nowrap;
        width: auto;
        /* Ensure it doesn't stretch weirdly */
    }

    /* Intro Overlay Mobile Adjustments */
    .intro-subtext {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }

    .intro-text {
        font-size: 0.75rem !important;
        letter-spacing: 0.1em !important;
    }

    .btn-intro {
        padding: 10px 25px !important;
        font-size: 0.85rem !important;
    }

    .intro-content {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Discord Carousel Styles */
.result-carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto 50px;
    /* Added 50px bottom margin for spacing */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #000000;
    /* Discord AMOLED Background */
}

#discord-carousel {
    height: auto;
    aspect-ratio: 16/9;
    background-color: #000000;
}

#discord-carousel img.discord-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000000;
}

/* Ensure navigation is visible on dark background */
#discord-carousel .carousel-btn {
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
}

#discord-carousel .carousel-btn:hover {
    background: var(--primary-color);
    color: #000;
}

/* Bonus Items Highlight */
.bonus-item {
    color: var(--primary-color);
    font-size: 1.25rem !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(204, 255, 0, 0.2);
}

.bonus-item svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

/* Designer Credit */
.designer-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
    opacity: 0.6;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.designer-credit:hover {
    opacity: 1;
}


.co-symbol {
    font-family: serif;
    font-style: italic;
    font-weight: bold;
    color: var(--primary-color);
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 120px 0;
    background-color: #0f0f0f;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.ecosystem-container {
    max-width: 900px;
    margin: 0 auto;
}

.ecosystem-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
}

.ecosystem-subheadline {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.ecosystem-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.social-icon-wrapper {
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.social-icon-wrapper:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    filter: drop-shadow(0 0 8px rgba(204, 255, 0, 0.4));
}

.btn-ecosystem {
    background-color: var(--primary-color);
    color: #000;
    border-radius: 12px;
    font-size: 1.3rem;
    padding: 22px 45px;
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    width: auto;
    max-width: none;
}

.btn-ecosystem:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
    box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4);
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ecosystem-headline {
        font-size: 2.2rem;
    }

    .ecosystem-subheadline {
        font-size: 1.1rem;
    }

    .ecosystem-section {
        padding: 80px 0;
    }
}