/* styling/pages/about.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.7;
            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.2), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 170, 0, 0.15), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(102, 170, 255, 0.2), transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: particle-float 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes particle-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
            50% { transform: translateY(-30px) rotate(180deg); opacity: 0.4; }
        }

        /* ===== 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);
        }

        .back-button {
            background: linear-gradient(45deg, #66aaff, #88ccff);
            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, 170, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        /* ===== HERO SECTION ===== */
        .hero-section {
            padding: 6rem 2rem 4rem;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
        }

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

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            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: 1.2rem;
            font-weight: 400;
            color: #ccc;
            margin-bottom: 2rem;
        }

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

        /* ===== ARTICLE SECTIONS ===== */
        .article-section {
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
            border-radius: 20px;
            border: 1px solid rgba(102, 221, 102, 0.2);
            position: relative;
            overflow: hidden;
        }

        .article-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #66dd66, #66aaff, #cc66ff);
            background-size: 200% 100%;
            animation: gradient-flow 4s ease-in-out infinite;
        }

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

        .article-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #d0d0d0;
        }

        .article-content p:last-child {
            margin-bottom: 0;
        }

        .article-content strong {
            color: #66dd66;
            font-weight: 600;
        }

        .article-content em {
            color: #ffaa00;
            font-style: italic;
        }

        /* ===== HIGHLIGHT BOXES ===== */
        .highlight-box {
            background: linear-gradient(45deg, rgba(102, 221, 102, 0.1), rgba(102, 170, 255, 0.1));
            border: 2px solid rgba(102, 221, 102, 0.3);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
        }

        .highlight-box::before {
            content: '💡';
            position: absolute;
            top: -15px;
            left: 20px;
            background: #1a1a2e;
            padding: 0 10px;
            font-size: 1.5rem;
        }

        .highlight-box h3 {
            color: #66dd66;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .highlight-box p {
            color: #e0e0e0;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .highlight-box p:last-child {
            margin-bottom: 0;
        }

        /* ===== PHILOSOPHY SECTIONS ===== */
        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .philosophy-card {
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.3), rgba(40, 53, 147, 0.3));
            border: 2px solid #66aaff;
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #66aaff, #88ccff);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .philosophy-card:hover::before {
            transform: scaleX(1);
        }

        .philosophy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 170, 255, 0.3);
            border-color: #88ccff;
        }

        .philosophy-card .icon {
            font-size: 2.5rem;
            color: #66aaff;
            margin-bottom: 1rem;
            display: block;
        }

        .philosophy-card h3 {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .philosophy-card p {
            color: #ccc;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* ===== JOURNEY TIMELINE ===== */
        .journey-timeline {
            margin: 4rem 0;
            padding: 2rem 0;
        }

        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 25px;
            top: 60px;
            bottom: -3rem;
            width: 2px;
            background: linear-gradient(to bottom, #66dd66, #66aaff);
        }

        .timeline-item:last-child::before {
            display: none;
        }

        .timeline-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #66dd66, #88ff88);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 0 15px rgba(102, 221, 102, 0.4);
            flex-shrink: 0;
        }

        .timeline-content {
            flex: 1;
            padding-top: 0.5rem;
        }

        .timeline-content h4 {
            color: #ffaa00;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: #ccc;
            line-height: 1.7;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            padding: 3rem 2rem;
            margin: 4rem 0;
            border-radius: 20px;
            border: 2px solid #ffaa00;
            text-align: center;
        }

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

        .cta-section p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

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

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

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

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

        .cta-btn::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;
        }

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

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

        .cta-btn.tertiary:hover {
            background: rgba(255, 170, 0, 0.1);
            box-shadow: 0 8px 25px rgba(255, 170, 0, 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: 4rem 1rem 3rem;
            }

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

            .article-section {
                padding: 1.5rem;
            }

            .philosophy-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .timeline-item {
                flex-direction: column;
                gap: 1rem;
            }

            .timeline-item::before {
                display: none;
            }

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

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

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

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

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 0.8s ease forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 0.8s ease forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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