﻿ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #f4f4f4;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 75% 75%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 235, 59, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            z-index: 1;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #000;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
            background: linear-gradient(45deg, #e0a800, #f9e319);
        }

        .section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            position: relative;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 90% 80%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .section:nth-child(even) {
            background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
        }

        .section:nth-child(even)::before {
            background: radial-gradient(circle at 90% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 10% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #f4f4f4;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.3);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 193, 7, 0.1);
            transition: all 0.3s ease;
            color: #f4f4f4;
            position: relative;
            z-index: 2;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255, 193, 7, 0.2);
            border-color: rgba(255, 193, 7, 0.5);
            background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.95));
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 3rem;
        }

        .step-item {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.3);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 193, 7, 0.1);
            position: relative;
            color: #f4f4f4;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 193, 7, 0.5);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255, 193, 7, 0.2);
            background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.95));
        }

        .step-item h3 {
            color: #f4f4f4;
            margin-bottom: 1rem;
        }

        .step-number {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 1rem;
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-left: 5px solid #ffc107;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 193, 7, 0.1);
            margin: 20px 0;
            color: #f4f4f4;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255, 193, 7, 0.2);
            border-left-color: #ffeb3b;
            background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.95));
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.3);
            margin: 15px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 193, 7, 0.1);
            position: relative;
            z-index: 2;
        }

        .faq-question {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            color: #000;
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #e0a800, #f9e319);
            box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
        }

        .faq-answer {
            padding: 20px;
            display: none;
            background: rgba(20, 20, 20, 0.8);
            color: #f4f4f4;
            backdrop-filter: blur(5px);
        }

        .faq-answer.active {
            display: block;
        }

        .floating-button {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #000;
            padding: 15px 60px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
            animation: breathe 2s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes breathe {
            0%, 100% {
                transform: translateX(-50%) scale(1);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
            }
        }

        .risk-disclosure {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
            color: #e8e8e8;
            padding: 40px 0;
            text-align: center;
            position: relative;
        }

        .risk-disclosure::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .risk-disclosure h3 {
            color: #e74c3c;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .risk-disclosure ul {
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
        }

        .risk-disclosure li {
            margin: 10px 0;
            padding-left: 20px;
        }

        .footer-links {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
            position: relative;
        }

        .footer-links::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            margin: 0 20px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #3498db;
        }

        .image-placeholder {
            width: 100%; 
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin: 20px 0;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .floating-button {
                padding: 12px 40px;
                font-size: 1rem;
            }
        }