 :root {
            --primary-color: #4747ff;
            --secondary-color: #ffa500;
            --text-color: #333;
            --background-color: #f0f0f0;
        }

        /* Light Theme Variables */
        [data-theme="light"] {
            --features-bg: #ffffff;
            --features-text: #333333;
            --features-text-secondary: #666666;
            --card-bg: rgba(0, 0, 0, 0.02);
            --card-border: rgba(0, 0, 0, 0.1);
            --card-hover-shadow: rgba(71, 71, 255, 0.25);
            --footer-bg: #f8f9fa;
            --footer-text: #333333;
            --footer-text-secondary: #666666;
            --footer-border: rgba(0, 0, 0, 0.1);
            --gradient-overlay-1: rgba(71, 71, 255, 0.05);
            --gradient-overlay-2: rgba(255, 165, 0, 0.05);
        }

        /* Dark Theme Variables */
        [data-theme="dark"] {
            --features-bg: #0a0a0a;
            --features-text: #ffffff;
            --features-text-secondary: #999999;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.1);
            --card-hover-shadow: rgba(71, 71, 255, 0.3);
            --footer-bg: #0a0a0a;
            --footer-text: #ffffff;
            --footer-text-secondary: #aaaaaa;
            --footer-border: rgba(255, 255, 255, 0.1);
            --gradient-overlay-1: rgba(71, 71, 255, 0.1);
            --gradient-overlay-2: rgba(255, 165, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            font-family: 'Jost', sans-serif;
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* COMPACT HEADER MATCHING TEMPLATE */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.05);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            padding: 0 10px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-left: 5px;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        /* Desktop Navigation */
        nav {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        nav a {
            color: brown;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }

        nav a:hover {
            color: orange;
        }

        .browse-btn {
            background-color: var(--secondary-color);
            color: black;
            padding: 6px 15px;
            border-radius: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            font-size: 0.85rem;
            border: 2px solid black;
            white-space: nowrap;
        }

        .browse-btn:hover {
            background-color: #ff8c00;
            color: white;
        }

        .browse-btn i {
            font-size: 12px;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            background: var(--features-bg);
            color: #0082e6;
            cursor: pointer;
            height: 2rem;
            width: 2rem;
            line-height: 2rem;
            text-align: center;
            border-radius: .5rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s linear;
            border: 2px solid darkorange;
        }

        .theme-toggle:hover {
            background: var(--secondary-color);
            color: white;
        }

        .menu-toggle {
            display: none;
           background: var(--features-bg);
            color: #0082e6;
            font-size: 1.3rem;
            cursor: pointer;
            height: 2rem;
            width: 2rem;
            line-height: 2rem;
            text-align: center;
            border-radius: .5rem;
            margin-left: 5px;
            border: 2px solid darkorange;
        }

        .menu-toggle:hover {
            background: var(--secondary-color);
            color: white;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -250px;
            width: 250px;
            height: 100%;
            background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(170,245,248,1) 0%, rgba(248,162,239,0.8) 90%);
            transition: right 0.3s ease-in-out;
            z-index: 1001;
            padding-top: 60px;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar nav {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sidebar nav a {
            color: black;
            text-decoration: none;
            margin: 10px 0;
            font-size: 16px;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar nav a:hover {
            color: blue;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: red;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: orange;
        }

        .header-buttons {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            header nav {
                display: none;
            }

            .browse-btn {
                display: none;
            }

            .logo img {
                height: 30px;
            }
        }

        .hero {
            background-image: linear-gradient(98.7deg, rgba(6,238,243,1) 10.6%, rgba(34,126,209,1) 72.2%, rgba(35,44,51,1) 122.5%, rgba(35,44,51,1) 122.5%);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 65px;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .hero-text {
            flex: 1;
            padding-right: 50px;
            color: black;
        }

        .hero-image {
            flex: 1;
            text-align: right;
        }

        .hero-image img {
            max-width: 80%;
            height: auto;
        }

        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .explore-btn {
            background-color: var(--secondary-color);
            color: black;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
            border: 2px solid black;
        }

        .explore-btn:hover {
            background-color: #ff8c00;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
        }

        .explore-btn i {
            font-size: 14px;
        }

        .explore2-btn {
            background-color: white;
            margin-left: 20px;
            color: black;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid black;
        }

        .explore2-btn:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
        }

        .explore2-btn i {
            font-size: 14px;
        }

        /* FEATURES SECTION WITH THEME SUPPORT */
        .features {
            background: var(--features-bg);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, var(--gradient-overlay-1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--gradient-overlay-2) 0%, transparent 50%);
            pointer-events: none;
        }

        .features-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }

        .features-header h2 {
            font-size: 48px;
            font-weight: 700;
            background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(214,40,40,1) 0%, rgba(255,195,0,1) 90% );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .features-header p {
            font-size: 20px;
            color: var(--features-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            transition: color 0.3s ease;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .feature-card a {
            text-decoration: none;
            color: inherit;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(71, 71, 255, 0.1), rgba(255, 165, 0, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
            border-radius: 24px;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 60px var(--card-hover-shadow);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), #6161ff);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            transition: all 0.5s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
            background: linear-gradient(135deg, var(--secondary-color), #ff8c00);
        }

        .feature-icon i {
            font-size: 36px;
            color: white;
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--features-text);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--features-text-secondary);
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .feature-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-image: linear-gradient( 75.1deg,  rgba(34,126,34,1) 6%, rgba(99,226,17,1) 84.3% );
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .feature-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
        }

        .feature-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .feature-btn:hover {
            background: linear-gradient(135deg, var(--secondary-color), #ff8c00);
            transform: scale(1.05);
        }

        .feature-btn i {
            transition: transform 0.3s ease;
        }

        .feature-btn:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .features-header h2 {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .features {
                padding: 70px 0;
            }

            .features-header {
                margin-bottom: 50px;
            }

            .features-header h2 {
                font-size: 36px;
            }

            .features-header p {
                font-size: 16px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                padding: 35px 25px;
            }

            .hero-content {
                flex-direction: column;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .hero-image {
                text-align: center;
            }

            h1 {
                font-size: 36px;
            }

            p {
                font-size: 16px;
            }

            .explore2-btn {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }

            p {
                font-size: 14px;
            }

            .features-header h2 {
                font-size: 28px;
            }

            .features-header p {
                font-size: 14px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
            }

            .feature-icon i {
                font-size: 32px;
            }

            .feature-card h3 {
                font-size: 20px;
            }

            .feature-card p {
                font-size: 14px;
            }
        }

        /* FOOTER WITH THEME SUPPORT */
        footer {
            background: var(--footer-bg);
            padding: 40px 0 20px;
            position: relative;
            overflow: hidden;
            color: var(--footer-text);
            transition: all 0.3s ease;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, var(--gradient-overlay-1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--gradient-overlay-2) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex-basis: 30%;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 700;
            color: var(--footer-text);
            transition: color 0.3s ease;
        }

        .footer-section a {
            color: var(--footer-text-secondary);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--secondary-color);
        }

        .footer-section p {
            margin-bottom: 10px;
            color: var(--footer-text-secondary);
            transition: color 0.3s ease;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            font-size: 20px;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(71, 71, 255, 0.1);
            border-radius: 50%;
            color: var(--footer-text);
        }

        .social-icons a:hover {
            color: var(--secondary-color);
            background: rgba(255, 165, 0, 0.2);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--footer-border);
            font-size: 14px;
            color: var(--footer-text-secondary);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }

            .footer-section {
                flex-basis: 100%;
            }
        }