        :root {
  --gradient-1: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  --gradient-2: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --accent-blue: #00b4d8;
  --accent-pink: #ff4091;
  --section-1: #2a2a72;
  --section-2: #0099ff;
  --text-light: #ffffff;
  --text-gray: #e0e0e0;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--background-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-color);
            color: white;
            padding: 8px;
            z-index: 1000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
        }
        
        .new-logo {
        cursor: pointer;
        }

        header {
            background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 100%);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-color), #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .tagline {
            color: var(--text-light);
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 0.8px;
            opacity: 0.9;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        nav {
            background: var(--secondary-color);
            padding: 1.2rem;
            position: relative;
            z-index: 999;
            display: none;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 2rem;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background: var(--primary-color);
            color: var(--background-dark);
        }

        main {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 25px;
        }

        .hero {
            position: relative;
            height: 70vh;
            margin-bottom: 3rem;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid var(--primary-color);
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(13,13,13,1) 5%, rgba(13,13,13,0) 50%);
        }

        .hero-content {
            position: absolute;
            bottom: 25%;
            left: 7%;
            max-width: 700px;
        }

        .hero-title {
            font-size: 28px;
            margin-bottom: 5px;
            background: linear-gradient(45deg, #ffd700, #ff0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: left;
        }

        .cta-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            padding: 1.5rem 2.5rem;
            border-radius: 15px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
		
		.premium-btn-container {
            background: linear-gradient(90deg, #68535c, #442312);
            padding: 2rem 0;
            text-align: center;
        }

        .premium-btn {
            padding: 20px;
            border-radius: 30px;
            background: #eac75f;
            color: #000;
            font-weight: 600;
            text-decoration: none;
            text-transform: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-block;
            backdrop-filter: blur(5px);
            border-left: 5px solid #2a2a2a;
            font-size: 1.25rem;
            width: 75%;
}

        .premium-btn:hover {
            background: linear-gradient(45deg, #00b09b, #96c93d);
            transform: translateY(-3px);
        }

        .cta-btn i {
            font-size: 2rem;
        }

        .btn-1 {
            background: linear-gradient(45deg, #00cc66, #00ff88);
            color: var(--background-dark);
        }

        .btn-2 {
            background: linear-gradient(45deg, #1e90ff, #00bfff);
            color: white;
        }

        .btn-3 {
            background: linear-gradient(45deg, #ff6b6b, #ff9999);
            color: white;
        }

        .btn-4 {
            background: linear-gradient(45deg, #ffd700, #ffff00);
            color: var(--background-dark);
        }

        .btn-5 {
            background: linear-gradient(to right, #1C92D2, #24A1DE);
            color: white;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        }

        .info-section {
            margin: 5rem auto;
            padding: 3rem;
            background: var(--secondary-color);
            border-radius: 20px;
            border: 1px solid #333;
        }

        .info-section h2 {
            color: var(--primary-color);
            margin-bottom: 2.5rem;
            font-size: 2.5rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }

        .feature-card {
            background: #262626;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #333;
        }

        .feature-card i {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }       

        

        .disclaimer {
            color: #ff4444;
            font-size: 0.95rem;
            border-left: 4px solid #ff4444;
            padding: 1.5rem;
            margin: 3rem 0;
            background: #1a1a1a;
            border-radius: 5px;
        }

        footer {
            background: var(--secondary-color);
            padding: 1rem 1rem 1rem 0;
            margin-top: 0rem;
            border-top: 2px solid #4d5350;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 1024px) {
            .hero-title {
                font-size: 28px;
            }

            .cta-buttons {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2.2rem;
            }

            .tagline {
                font-size: 1.1rem;
            }

            nav ul {
                gap: 1rem;
            }

            .hero-title {
                font-size: 24px !important;
            }

            .cta-buttons {
                grid-template-columns: 1fr;
            }

            .info-section {
                padding: 2rem;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            
        }

        @media (max-width: 480px) {
            .hero {
                height: 60vh;
            }

            .hero-title {
                font-size: 24px !important;
            }

            .cta-btn {
                padding: 12px;
                font-size: 1rem;
            }

           

            .step-item {
                flex-direction: column;
                text-align: center;
            }
        }
		
		.hero-title {
            font-size: 28px;
            margin-bottom: 5px;
            background: linear-gradient(45deg, #ffd700, #ff0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: left;
        }
 @media screen and (max-width: 768px) {
            .hero-title {
                font-size: 24px !important;
            }
            
            main {
                padding: 0 10px;
}

         .cta-btn {
            padding: 12px;
            font-size: 1rem;
    }
        .cta-btn i {
            font-size: 1.5rem;
            margin-bottom: -10px;
    }
        .benefits-section {
             padding: 20px;
    }
    .sharethis {  
        padding: 15px;
        margin-top: 0px; 
	}
   .sharesbt {  
        padding: 10px;
        padding-left: 20px;
        padding-top: 20px;
  }
  .benefits-list li {
            padding: 1rem;
            padding-left: 3rem;
        }
        
        .benefits-list li::before {
            left: 1rem;
            top: 1rem;
        }
		.premium-btn {
		padding: 15px 20px;
        font-size: 18px;
        width: 90%;
        font-weight: 500;
		}
}

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 20px;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: 28px;
            margin-bottom: 5px;
            background: linear-gradient(45deg, #ffd700, #ff0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: left;
        }       
   
        :root {
            --primary-color: #00cc66;
            --secondary-color: #1a1a1a;
            --background-dark: #0d0d0d;
            --text-light: #ffffff;
            --text-gray: #b3b3b3;
            --gradient-bg: linear-gradient(135deg, #1a1a1a 0%, #4a148c 50%, #880e4f 100%);
            --header-bg: linear-gradient(180deg, rgba(26,26,26,0.95) 0%, rgba(74,20,140,0.9) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        body {
            background-image: var(--gradient-bg);
            background-attachment: fixed;
            background-size: cover;
            color: var(--text-light);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Rest of the CSS remains same until header */
        
        header {
            background: var(--secondary-color);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #4d5350;
        }

        /* Keep all original CSS rules below unchanged */
        /* ... [All previous CSS content remains same] ... */
        
        
    .benefits-section {
        margin: 3rem 0;
        background: #1a1a1a;
        padding: 20px;
        border-radius: 15px;
        border: 1px solid #333;
    }

    .benefits-list {
        list-style: none;
        margin: 2rem 0;
    }

    .benefits-list li {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        background: #262626;
        border-radius: 10px;
        position: relative;
        padding-left: 4rem;
        transition: transform 0.3s ease;
    }

    .benefits-list li:hover {
        transform: translateX(10px);
    }

    .benefits-list li::before {
        content: "★";
        color: var(--primary-color);
        font-size: 1.8rem;
        position: absolute;
        left: 1.5rem;
        top: 1.3rem;
    }

    .benefits-list strong {
        color: var(--primary-color);
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.5rem;
    }
        
    .fas.fa-arrow-circle-right.ml-2 {
  color: #bf303d;
}
.fas.fa-gem {
  color: #11778e;
    }
 
.sharesbt {
  font-size: 16px;
  font-weight: 600;
  color: #ffd700;
  margin: 1rem 0;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  padding: 10px;
  padding-left: 20px;
  padding-top: 10px;

}
.oyourf {
  font-size: 12px;
  margin-top: -0px;
  color:#ffffff;
}
   @media screen and (min-width: 820px) {
  .premium-btn {		
		width: 40%;
  }
  .sharethis {  
  margin-top: -40px;
  margin-left: 10rem;
    }
}