/* styling/pages/homepage.css
===== CSS RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== GAMING CONTAINER WITH ANIMATED BACKGROUND ===== */
        .gaming-container {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated background particles */
        .gaming-container::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(102, 221, 102, 0.3), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 170, 0, 0.2), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(102, 170, 255, 0.3), transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: particle-float 15s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes particle-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
        }

        /* ===== HEADER NAVIGATION ===== */
        .gaming-header {
            background: linear-gradient(90deg, rgba(26, 26, 30, 0.95), rgba(22, 33, 62, 0.95));
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #66dd66;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #66dd66, #88ff88);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #000;
            box-shadow: 0 0 20px rgba(102, 221, 102, 0.4);
            animation: logo-glow 3s ease-in-out infinite alternate;
        }

        @keyframes logo-glow {
            from { box-shadow: 0 0 20px rgba(102, 221, 102, 0.4); }
            to { box-shadow: 0 0 30px rgba(102, 221, 102, 0.7); }
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px rgba(102, 221, 102, 0.5);
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .status-badge {
            background: linear-gradient(45deg, #ffaa00, #ff8800);
            color: #000;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            animation: pulse-badge 2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .cta-button {
            background: linear-gradient(45deg, #66dd66, #88ff88);
            color: #000;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 221, 102, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 221, 102, 0.5);
            background: linear-gradient(45deg, #88ff88, #66dd66);
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            padding: 8rem 2rem 4rem;
            text-align: center;
            position: relative;
            background: url('img/banner-bk.jpg') center/cover;
            background-blend-mode: overlay;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: clamp(2.5rem, 4vw, 2rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #66dd66, #88ff88, #66aaff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: title-glow 4s ease-in-out infinite;
        }

        @keyframes title-glow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(102, 221, 102, 0.5)); }
            50% { filter: drop-shadow(0 0 20px rgba(102, 221, 102, 0.8)); }
        }

        .hero-subtitle {
            font-size: 2rem;
            font-weight: 500;
            color: #ccc;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #66dd66, #88ff88);
            color: #000;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(102, 221, 102, 0.4);
            position: relative;
            overflow: hidden;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 221, 102, 0.6);
        }

        /* ===== MAIN CONTENT AREA ===== */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* ===== INTRODUCTION SECTION ===== */
        .intro-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #66dd66, #66aaff);
            border-radius: 2px;
        }

        .intro-text {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 900px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        .intro-text strong {
            color: #66dd66;
            font-weight: 600;
        }

        .intro-text em {
            color: #ffaa00;
            font-style: italic;
        }

        /* ===== FEATURE SECTIONS ===== */
        .feature-section {
            margin: 6rem 0;
            padding: 4rem 2rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Challenges Section */
/* Challenges Section */
.challenges-section {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(40, 53, 147, 0.06));
    border: 1px solid rgba(102, 170, 255, 0.2);
}

        .challenges-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #66aaff, #88ccff, #66aaff);
            animation: border-flow 3s ease-in-out infinite;
        }

        @keyframes border-flow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Solutions Section */
/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(56, 142, 60, 0.06));
    border: 1px solid rgba(102, 221, 102, 0.2);
}

        .solutions-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #66dd66, #88ff88, #66dd66);
            animation: border-flow 3s ease-in-out infinite reverse;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .feature-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .feature-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffaa00;
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            color: #ccc;
            line-height: 1.6;
        }

        .feature-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #66dd66;
            font-weight: bold;
        }

        .feature-list li strong {
            color: #fff;
            font-weight: 600;
        }

        .feature-image {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .feature-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .feature-image img:hover {
            transform: scale(1.05);
        }

        /* ===== SECURITY SECTION ===== */
/* Security Section */
.security-section {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.08), rgba(106, 27, 154, 0.06));
    border: 1px solid rgba(204, 102, 255, 0.2);
}

        .security-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #cc66ff, #dd88ff, #cc66ff);
            animation: border-flow 3s ease-in-out infinite;
        }

        .security-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .security-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .security-content p {
            font-size: 1.1rem;
            color: #ccc;
            line-height: 1.8;
        }

        .security-content strong {
            color: #cc66ff;
            font-weight: 600;
        }

        /* ===== CONTACT SECTION ===== */
/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.6));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 170, 0, 0.3);
    text-align: center;
}

        .contact-section h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffaa00;
            margin-bottom: 1.5rem;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #ccc;
            font-size: 1rem;
        }

        .contact-item i {
            color: #ffaa00;
            font-size: 1.2rem;
        }

        /* ===== CTA BUTTONS SECTION ===== */
        .cta-section {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn.primary {
            background: linear-gradient(45deg, #66aaff, #88ccff);
            color: #000;
            box-shadow: 0 4px 15px rgba(102, 170, 255, 0.3);
        }

        .cta-btn.secondary {
            background: linear-gradient(45deg, #ffaa00, #ff8800);
            color: #000;
            box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
        }

        .cta-btn.tertiary {
            background: transparent;
            color: #66dd66;
            border: 2px solid #66dd66;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 170, 255, 0.5);
        }

        .cta-btn.tertiary:hover {
            background: rgba(102, 221, 102, 0.1);
            box-shadow: 0 8px 25px rgba(102, 221, 102, 0.3);
        }

        /* ===== FOOTER ===== */
        .gaming-footer {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            border-top: 2px solid #333;
            padding: 2rem;
            text-align: center;
            margin-top: 4rem;
        }

        .footer-content {
            color: #888;
            font-size: 0.9rem;
        }

        .footer-content strong {
            color: #66dd66;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .hero-section {
                padding: 6rem 1rem 3rem;
            }

            .main-content {
                padding: 2rem 1rem;
            }

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

            .feature-grid .feature-image {
                order: -1;
            }

            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-section {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        /* ===== FLOATING PARTICLES ANIMATION ===== */
        .floating-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #66dd66;
            border-radius: 50%;
            opacity: 0.6;
            pointer-events: none;
            animation: float-up 8s linear infinite;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) translateX(0px);
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) translateX(50px);
                opacity: 0;
            }
        }

        /* ===== LOADING ANIMATION ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== UTILITY CLASSES ===== */
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
