        :root {
            --primary: #6c63ff;
            --secondary: #4a44c9;
            --dark: #2a2a72;
            --light: #f8f9fa;
            --accent: #ff6584;
            --neon: #00f3ff;
            --sidebar-width: 280px;
            --bg-color: #0f0f1e;
            --select-color: #f8f9fa;
            --select-option-color: #0f0f1e;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-color: #f8f9fa;
            --muted-text: #b8b8d0;
            --success: #4CAF50;
            --warning: #FF9800;
            --danger: #F44336;
            --info: #2196F3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Exo 2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background-color: #0f0f1e;
            color: var(--light);
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        /* Canvas Backgrounds */
        .canvas-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        /* Navigation - Fixed Height and Dropdown Alignment */
        .navbar {
            background: rgba(15, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(108, 99, 255, 0.2);
            z-index: 1000;
        }
        
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--light) !important;
            letter-spacing: 1px;
            text-transform: capitalize;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: flex;
            align-items: center;
        }
                
        .nav-link {
            color: var(--light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .dropdown-toggle::after {
            margin-left: 5px;
            vertical-align: middle;
        }
        
        .dropdown-menu {
            background: rgba(15, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(108, 99, 255, 0.2);
        }
        
        .dropdown-item {
            color: var(--light);
        }
        
        .dropdown-item:hover {
            background: rgba(108, 99, 255, 0.2);
            color: var(--primary);
        }
        
        .search-form {
            position: relative;
            margin-right: 15px;
        }
        
        .search-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(108, 99, 255, 0.3);
            border-radius: 50px;
            color: var(--light);
            padding: 8px 15px 8px 40px;
            width: 250px;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
            outline: none;
        }
        
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
        }
        
        /* User Profile Dropdown */
        .user-profile {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .user-profile:hover {
            background: rgba(108, 99, 255, 0.1);
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 8px;
        }
        
        .user-name {
            font-size: 0.9rem;
            color: var(--light);
        }
        
        /* Apps Menu Modal */
        .apps-modal {
            position: fixed;
            top: 0;
            right: -100%;
            width: 400px;
            height: 100vh;
            background: rgba(15, 15, 30, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1100;
            transition: right 0.4s ease;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }
        
        .apps-modal.open {
            right: 0;
        }
        
        .apps-modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(108, 99, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .apps-modal-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .close-apps-modal {
            background: transparent;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-apps-modal:hover {
            color: var(--accent);
        }
        
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding: 1.5rem;
        }
        
        .app-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            cursor: pointer;
        }
        
        .app-item:hover {
            background: rgba(108, 99, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .app-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .app-name {
            font-size: 0.9rem;
            color: var(--light);
        }
        
        /* Hero Section - Redesigned with Advanced Design */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--light);
            line-height: 1.2;
        }
        
        .hero h1 span {
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #b8b8d0;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .prompt-badge {
            display: inline-block;
            background: rgba(108, 99, 255, 0.2);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            border: 1px solid rgba(108, 99, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .prompt-badge:hover {
            background: rgba(108, 99, 255, 0.4);
            transform: translateY(-2px);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5);
        }
        
        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            color: var(--select-color);
        }
        
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            color: var(--select-color);
        }
        
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            justify-content: center;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #b8b8d0;
            margin-top: 0.5rem;
        }
                
        /* Features Section */
        .section {
            padding: 5rem 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
            letter-spacing: 1px;
        }
        
        .section-title p {
            color: #b8b8d0;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .feature-card p {
            color: #b8b8d0;
        }
        
        /* Categories Section */
        .category-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .category-card::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            top: -50px;
            right: -50px;
            opacity: 0.1;
            transition: all 0.5s ease;
        }
        
        .category-card:hover::after {
            transform: scale(5);
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .category-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .category-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .category-card p {
            color: #b8b8d0;
        }
        
        /* New Sections - Redesigned */
        
        /* Trending Prompts Section */
        .trending-prompts {
            background: rgba(15, 15, 30, 0.7);
            position: relative;
            overflow: hidden;
        }
        
        .prompt-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .prompt-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .prompt-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .prompt-category {
            background: rgba(108, 99, 255, 0.2);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .prompt-content {
            margin-bottom: 1.5rem;
            color: #b8b8d0;
            line-height: 1.6;
        }
        
        .prompt-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copy-btn {
            background: rgba(108, 99, 255, 0.2);
            border: none;
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .copy-btn:hover {
            background: rgba(108, 99, 255, 0.3);
        }
        
        .prompt-stats {
            display: flex;
            gap: 1rem;
            color: #6c757d;
            font-size: 0.8rem;
        }
        
        /* Prompt Showcase Section */
        .prompt-showcase {
            background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
            position: relative;
        }
        
        .showcase-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 500px;
        }
        
        .showcase-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3rem;
            background: rgba(15, 15, 30, 0.7);
            z-index: 2;
        }
        
        /* Use Cases Section */
        .use-cases {
            background: rgba(15, 15, 30, 0.8);
            position: relative;
        }
        
        .use-case-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
        }
        
        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .use-case-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(45deg, #0f0f1e, #1a1a3e);
            position: relative;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #b8b8d0;
            line-height: 1.6;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-weight: bold;
            color: white;
        }
        
        .author-info h5 {
            margin: 0;
            color: var(--light);
        }
        
        .author-info p {
            margin: 0;
            color: #b8b8d0;
            font-size: 0.9rem;
        }
        
        /* How It Works Section */
        .how-it-works {
            background: #0a0a16;
            position: relative;
        }
        
        .step-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 1.2rem;
        }
        
        .step-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        /* Prompt Engineering Tutorial Section */
        .tutorial-section {
            background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3e 100%);
            position: relative;
            overflow: hidden;
        }
        
        .tutorial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
            position: relative;
        }
        
        .tutorial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .tutorial-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .tutorial-level {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(108, 99, 255, 0.2);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Prompt Submission Section */
        .submission-section {
            background: rgba(15, 15, 30, 0.8);
            position: relative;
        }
        
        .submission-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }
        
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(108, 99, 255, 0.3);
            color: var(--light);
            border-radius: 10px;
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
            color: var(--light);
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--dark), #1a1a2e);
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--primary);
            border-radius: 50%;
            top: -100px;
            left: -100px;
            opacity: 0.1;
        }
        
        .cta::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--accent);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            opacity: 0.1;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #b8b8d0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* NEW SECTIONS */
        
        /* AI Platforms Section */
        .platforms-section {
            background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3e 100%);
            position: relative;
        }
        
        .platform-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
        }
        
        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .platform-icon-container {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border: 2px solid rgba(108, 99, 255, 0.3);
        }
        
        .platform-icon {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .platform-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
            font-size: 0.85rem;
        }
        
        .platform-stat {
            text-align: center;
        }
        
        .platform-stat-value {
            font-weight: bold;
            color: var(--primary);
        }
        
        .platform-stat-label {
            color: #b8b8d0;
            font-size: 0.75rem;
        }
        
        /* Community Section */
        .community-section {
            background: rgba(15, 15, 30, 0.8);
            position: relative;
        }
        
        .community-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
        }
        
        .community-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .community-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(45deg, #0f0f1e, #1a1a3e);
            position: relative;
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
            position: relative;
        }
        
        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 0.5rem;
        }
        
        .pricing-period {
            color: #b8b8d0;
            font-size: 1rem;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            margin-bottom: 0.8rem;
            color: #b8b8d0;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        /* Prompt Generator Section */
        .generator-section {
            background: rgba(15, 15, 30, 0.8);
            position: relative;
        }
        
        .generator-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }
        
        .generator-output {
            background: rgba(15, 15, 30, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            min-height: 150px;
            margin-top: 1.5rem;
            border: 1px solid rgba(108, 99, 255, 0.2);
        }
        
        /* Blog Section */
        .blog-section {
            background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3e 100%);
            position: relative;
        }
        
        .blog-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        
        .blog-date {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        /* Resources Section */
        .resources-section {
            background: linear-gradient(45deg, #0f0f1e, #1a1a3e);
            position: relative;
        }
        
        .resource-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
            height: 100%;
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .resource-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background: #0a0a16;
            padding: 4rem 0 2rem;
        }
        
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 2rem;
            color: var(--light);
            letter-spacing: 1px;
            text-transform: capitalize;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .footer-links h5 {
            color: var(--light);
            margin-bottom: 1.5rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #b8b8d0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            margin-right: 10px;
            color: var(--light);
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-newsletter {
            margin-top: 1.5rem;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(108, 99, 255, 0.3);
            border-radius: 50px 0 0 50px;
            color: var(--light);
            padding: 10px 15px;
            border-right: none;
        }
        
        .newsletter-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 20px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #b8b8d0;
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes glow {
            0% {
                box-shadow: 0 0 5px var(--primary);
            }
            50% {
                box-shadow: 0 0 20px var(--primary), 0 0 30px var(--accent);
            }
            100% {
                box-shadow: 0 0 5px var(--primary);
            }
        }
        
        .glowing {
            animation: glow 3s ease-in-out infinite;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .showcase-content {
                padding: 1.5rem;
            }
            
            .search-input {
                width: 180px;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
                        
            .element-5 {
                width: 80px;
                height: 80px;
            }
            
            .apps-modal {
                width: 100%;
            }
            
            .user-name {
                display: none;
            }
        }

        select{
            color: var(--select-color);
        }
        select option{
            color: var(--select-option-color);
        }
  .a-link{text-decoration: none;}
