   :root {
            --primary: gold;
            --secondary: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
            --gradient: linear-gradient(135deg, #323232, #2a2926b9);
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: url(/pluto/images/index/IMG_20250429_092836_344-pica_2.png) fixed no-repeat;
            background-position: center;
            background-size: cover;
            color: white;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */



        .line{
  border-bottom:2px solid goldenrod;
}
.pr{
  border-bottom:2px solid rgb(255, 255, 255);
}





        /* //////////////////////////////////// */
        .level-header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 100px;
            clip-path: ellipse(100% 100% at 50% 0%);
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
            text-align: center;
        }

        .level-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
            background-size: cover;
            background-position: bottom;
            opacity: 0.5;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .header-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .header-content .level-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .header-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Level Details Section */
        .level-details {
            background: rgba(12, 12, 12, 0.8);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }

        .requirements, .rewards {
            margin-bottom: 30px;
        }

        .requirement-item, .reward-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .requirement-icon, .reward-icon {
            background: rgba(255, 217, 0, 0.215);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
            color: var(--primary);
        }

        .requirement-content, .reward-content {
            flex: 1;
        }

        .requirement-content h3, .reward-content h3 {
            margin-bottom: 5px;
            color: var(--primary);
        }

        /* Reward Highlight */
        .reward-highlight {
            background: rgba(255, 217, 0, 0.215);
            border: 2px dashed var(--primary);
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .reward-highlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(138,43,226,0.1) 0%, rgba(138,43,226,0) 70%);
            z-index: 0;
        }

        .reward-highlight-content {
            position: relative;
            z-index: 1;
        }

        .reward-highlight h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .reward-highlight p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .reward-product {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .reward-product img {
            width: 200px;
            height: auto;
            margin-bottom: 15px;
        }

        .gold-bar {
            color: var(--gold);
            font-weight: bold;
        }

        /* How to Achieve Section */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .step {
            background: rgba(0, 0, 0, 0.5);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .step-number {
            background: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .step h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }

        /* Testimonials */
        .testimonials {
            margin-top: 50px;
        }

        .testimonial-card {
            background: rgba(0, 0, 0, 0.5);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-top: 3px solid var(--primary);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: rgba(138, 43, 226, 0.2);
            position: absolute;
            top: -15px;
            left: -10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            margin-left: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .author-info h4 {
            color: var(--primary);
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 0;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px;
            background-color: rgba(47, 47, 47, 0.626);
border-radius: 20px;
backdrop-filter: blur(5px);
border: 2px solid var(--primary);
        }

        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: var(--transition);
            border: 2px solid var(--primary);
        }

        .btn:hover {
            background: transparent;
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content h1 {
                font-size: 2.2rem;
            }
            
            .level-details {
                padding: 25px;
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
            
            .reward-highlight {
                padding: 20px;
            }
            
            .reward-product {
                font-size: 2rem;
            }
            
            .reward-product img {
                width: 150px;
            }
        }