        body {
            margin: 0; padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #ff8000;
            color: #f0f0f0;
            min-height: 200vh; /* For scroll effect */
        }

        body::before {
            content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at center, rgba(26,26,26,0.8) 0%, rgba(15,15,15,0.9) 100%), url('../media/img/bubbles.png');
            background-size: cover;
            opacity: 0.15;
            z-index: 1;
        }

        /* Hero Section */
        .hero {
            height: 80vh;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            text-align: center; padding: 0 10%;
        }

        .hero h1 { font-size: 4rem; font-weight: 900; margin-bottom: 1rem; position: relative; }
        .hero h1 span { color: #804000; text-shadow: 0 0 30px rgba(255, 128, 0, 0.3); }
        
        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            background: rgba(99, 178, 47, 0.1);
            color: #63B22F;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .live-dot {
            width: 8px; height: 8px;
            background: #63B22F;
            border-radius: 50%;
            box-shadow: 0 0 10px #63B22F;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }

        .hero p { font-size: 1.4rem; opacity: 0.7; max-width: 600px; line-height: 1.6; margin-bottom: 2rem; }
        .btn-main {
            display: inline-block;
            background: #914b04;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 128, 0, 0.2);
        }
        
        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 128, 0, 0.4);
            background: var(--primary-color-light);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 5%;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
            max-width: 1200px; margin: 0 auto;
        }

        .testimonial-card {
            background: rgba(19, 2, 2, 0.48);
            background-color: rgba(19, 2, 2, 0.48);
            background-position-x: 0%;
            background-position-y: 0%;
            background-repeat: repeat;
            background-attachment: scroll;
            background-image: none;
            background-size: auto;
            background-origin: padding-box;
            background-clip: border-box;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgb(244, 194, 0);
            transition: 0.3s;
        }

        .testimonial-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
        
        .testi-img {
            width: 80px; height: 80px; border-radius: 50%;
            margin: 0 auto 1.5rem; border: 3px solid var(--primary-color);
            object-fit: cover;
        }
        .testi-quote { font-style: italic; opacity: 0.8; line-height: 1.5; margin-bottom: 1rem; }
        .testi-name { font-weight: bold; color: var(--primary-color); }

        .footer { padding: 4rem; text-align: center; opacity: 0.2; font-size: 0.8rem; }