:root {
            --primary-purple: #6a11cb;
            --primary-blue: #2575fc;
            --dark-bg: #0f1525;
            --card-bg: #1a2238;
            --accent-teal: #20c997;
            --text-light: #f8f9fa;
            --text-muted: #adb5bd;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.8;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
        }
        .navbar {
            background-color: rgba(15, 21, 37, 0.95);
            backdrop-filter: blur(10px);
            padding-top: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(15, 21, 37, 0.85), rgba(15, 21, 37, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-content {
            z-index: 2;
            position: relative;
        }
        .pixel-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(106, 17, 203, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(106, 17, 203, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-purple), var(--primary-blue));
            border-radius: 2px;
        }
        .game-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,255,255,0.05);
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(106, 17, 203, 0.3);
            border-color: rgba(106, 17, 203, 0.5);
        }
        .game-card-img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover .game-card-img {
            transform: scale(1.05);
        }
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        .btn-glow {
            background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
        }
        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(106, 17, 203, 0.6);
            color: white;
        }
        .tech-icon {
            width: 70px;
            height: 70px;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
        }
        .tech-icon:hover {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            transform: rotate(5deg) scale(1.1);
        }
        .contact-info-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 30px;
            height: 100%;
            border-left: 5px solid var(--accent-teal);
            transition: transform 0.3s ease;
        }
        .contact-info-card:hover {
            transform: translateX(10px);
        }
        .friendlink {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .friendlink:hover {
            background: rgba(106, 17, 203, 0.2);
            border-color: var(--primary-purple);
            transform: translateY(-3px);
            color: var(--text-light);
        }
        footer {
            background-color: #090d17;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-teal);
        }
        .form-control-custom {
            background-color: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-light);
            border-radius: 8px;
            padding: 14px 20px;
        }
        .form-control-custom:focus {
            background-color: rgba(255,255,255,0.1);
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
            color: var(--text-light);
        }
        .timeline-item {
            position: relative;
            padding-left: 40px;
            margin-bottom: 40px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(var(--primary-purple), var(--primary-blue));
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 25px;
            width: 2px;
            height: calc(100% + 20px);
            background: rgba(255,255,255,0.1);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 90vh;
                background-attachment: scroll;
            }
            .section-title::after {
                left: 0;
                transform: none;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
