* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --dark: #0a0e27;
    --darker: #05070f;
    --light: #ffffff;
    --gray: #8892b0;
    --card-bg: #151a30;
    --accent: #5865f2;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker), var(--dark));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 255, 136, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.15s;
    border-top-color: var(--accent);
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.3s;
    border-top-color: var(--primary);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: var(--gray);
    font-size: 16px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.floating-shapes {
    width: 100%;
    height: 100%;
    position: relative;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    right: 10%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    bottom: 10%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 30%;
    left: 50%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.shape-5 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: 20%;
    right: 20%;
    animation-duration: 24s;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* ============================================
   NAVIGATION WITH 3D EFFECTS
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s;
}

.nav.scrolled {
    padding: 15px 0;
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION WITH PARTICLES
   ============================================ */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particle-float 15s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    }
    50% {
        box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    color: transparent;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    -webkit-text-fill-color: #00ff88;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    -webkit-text-fill-color: #5865f2;
    z-index: -2;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

@keyframes glitch-1 {
    0% {
        clip-path: inset(40% 0 61% 0);
        transform: translate(-2px, -2px);
    }
    20% {
        clip-path: inset(92% 0 1% 0);
        transform: translate(2px, 2px);
    }
    100% {
        clip-path: inset(43% 0 1% 0);
        transform: translate(-2px, 2px);
    }
}

@keyframes glitch-2 {
    0% {
        clip-path: inset(80% 0 0 0);
        transform: translate(2px, 2px);
    }
    20% {
        clip-path: inset(54% 0 7% 0);
        transform: translate(-2px, -2px);
    }
    100% {
        clip-path: inset(58% 0 43% 0);
        transform: translate(2px, -2px);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

/* ============================================
   3D BUTTONS
   ============================================ */
.btn {
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn * {
    position: relative;
    z-index: 1;
}

/* Ensure button text is always visible */
.btn::before {
    z-index: 0;
}

.btn-3d {
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: translateZ(-20px);
    filter: brightness(0.8);
    border-radius: inherit;
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #00dd77);
    color: var(--dark) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary span,
.btn-primary a {
    color: var(--dark) !important;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--gray);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.4);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* ============================================
   ANIMATED STATS
   ============================================ */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(21, 26, 48, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   3D CARDS
   ============================================ */
.card-3d {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.card-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(88, 101, 242, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: inherit;
    z-index: -1;
}

.card-3d:hover::before {
    opacity: 1;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
    padding: 100px 0;
    background: var(--dark);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.problem-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(136, 146, 176, 0.2);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.problem-card:hover::after {
    transform: scaleX(1);
}

.problem-card.highlight-card {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(88, 101, 242, 0.05));
}

.problem-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.problem-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.problem-card p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
}

/* ============================================
   METHOD SECTION
   ============================================ */
.method {
    padding: 100px 0;
    background: var(--darker);
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.method-step {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.method-step::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.1));
    transition: top 0.5s;
}

.method-step:hover::before {
    top: 0;
}

.method-step:hover {
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.method-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.method-step p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   EXAMPLE BOX
   ============================================ */
.example-box {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 16px;
    margin: 60px 0;
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.example-box h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.example-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.example-bet {
    background: var(--dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.example-bet:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.book-name {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.odds {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stake {
    font-size: 18px;
    margin-bottom: 10px;
}

.payout {
    font-size: 16px;
    color: var(--gray);
}

.example-divider {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
}

.example-result {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(88, 101, 242, 0.1));
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    border: 1px solid var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary);
    }
    50% {
        box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
}

.method-note {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.5);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.method-note h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffc107;
}

.method-note p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--dark);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-image {
    flex-shrink: 0;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--card-bg), var(--darker));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180px !important;
    max-width: 180px !important;
    flex-shrink: 0 !important;
}

.about-image * {
    max-width: 180px !important;
    max-height: 180px !important;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 217, 255, 0.3));
    animation: pulse-ring 3s ease-out infinite;
    z-index: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 217, 255, 0.1));
    animation: pulse-ring 3s ease-out infinite 0.5s;
    z-index: 0;
}

.about-image img {
    width: 180px !important;
    height: 180px !important;
    max-width: 180px !important;
    max-height: 180px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--primary) !important;
    box-shadow: 0 6px 24px rgba(0, 255, 136, 0.25),
                0 0 0 6px rgba(0, 255, 136, 0.08),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    display: block !important;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out, float 6s ease-in-out infinite;
    animation-delay: 0.2s, 1.2s;
}

.about-image img:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 36px rgba(0, 255, 136, 0.4),
                0 0 0 8px rgba(0, 255, 136, 0.12),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: #00d9ff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    animation: rotate-gradient 4s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.image-placeholder:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4);
}

.image-placeholder span {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.about-intro {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 100px 0;
    background: var(--darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 2px solid rgba(136, 146, 176, 0.2);
    position: relative;
    transition: all 0.5s;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(88, 101, 242, 0.05));
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge.pulse {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 10px var(--primary);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(136, 146, 176, 0.2);
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-price {
    margin: 20px 0;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.price-period {
    font-size: 18px;
    color: var(--gray);
}

.pricing-description {
    color: var(--gray);
    font-size: 16px;
}

.pricing-features h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s;
}

.pricing-features li:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.check {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.check-gold {
    color: #ffd700;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.guarantee {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 16px;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: rotate-gradient 6s linear infinite;
}

.guarantee h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.guarantee p {
    font-size: 18px;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(136, 146, 176, 0.1);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transition: height 0.5s;
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker), var(--dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-circle 3s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.cta h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 40px;
    background: var(--darker);
    text-align: center;
    border-top: 1px solid rgba(136, 146, 176, 0.1);
}

.footer p {
    color: var(--gray);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* ============================================
   AOS ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-45deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

[data-aos="flip-right"] {
    transform: perspective(1000px) rotateY(45deg);
}

[data-aos="flip-right"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problem-grid,
    .method-steps,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image::before {
        width: 140px;
        height: 140px;
    }

    .about-image::after {
        width: 160px;
        height: 160px;
    }

    .about-image img {
        width: 120px !important;
        height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
    }

    .example-content {
        grid-template-columns: 1fr;
    }

    .example-divider {
        transform: rotate(90deg);
    }

    .nav-links {
        gap: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .loader-spinner {
        gap: 5px;
    }

    .spinner-ring {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        display: none;
    }

    .pricing-card,
    .method-step,
    .problem-card,
    .faq-item {
        padding: 30px;
    }

    .loader-logo {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .about-image::before {
        width: 120px;
        height: 120px;
    }

    .about-image::after {
        width: 135px;
        height: 135px;
    }

    .about-image img {
        width: 100px !important;
        height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
