
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            position: relative;
        }

        /* Navigation Styles */
        .navbar {
            background: rgba(26, 26, 26, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(255, 70, 85, 0.2);
        }

        .brand {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            color: #ff4655 !important;
            text-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
            transition: all 0.3s ease;
        }

        .brand:hover {
            text-shadow: 0 0 30px rgba(255, 70, 85, 0.8);
            transform: scale(1.05);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            transition: all 0.3s ease;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #ff4655;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #ff4655 !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Main Content */
        main {
            padding-bottom: 2rem;
        }

        section {
            padding: 3rem 0;
        }

        h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, #ff4655 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 70, 85, 0.3);
        }

        /* Game Card Styles */
        .game-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 70, 85, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 70, 85, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .game-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(255, 70, 85, 0.3);
            border-color: rgba(255, 70, 85, 0.5);
        }

        .game-card:hover::before {
            opacity: 1;
        }

        .game-image {
            height: 320px;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
            transition: transform 0.4s ease;
            position: relative;
            z-index: 0;
        }

        .game-card:hover .game-image {
            transform: scale(1.1);
        }

        .game-card .p-3 {
            position: relative;
            z-index: 2;
            background: rgba(26, 26, 26, 0.8);
        }

        .game-card h5 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .btn-danger {
            background: linear-gradient(135deg, #ff4655 0%, #ff6b7a 100%);
            border: none;
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 70, 85, 0.3);
        }

        .btn-danger:hover {
            background: linear-gradient(135deg, #ff6b7a 0%, #ff4655 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 70, 85, 0.5);
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            border-top: 1px solid rgba(255, 70, 85, 0.2);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #ff4655 50%, transparent 100%);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            color: #ff4655;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            line-height: 2;
        }

        .footer-section a:hover {
            color: #ff4655;
            padding-left: 5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 70, 85, 0.1);
            border-radius: 50%;
            color: #ff4655;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 70, 85, 0.3);
        }

        .social-links a:hover {
            background: #ff4655;
            color: #ffffff;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 70, 85, 0.4);
            border-color: #ff4655;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            overflow: hidden;
            padding: 10rem 0 6rem !important;
            margin-top: 76px;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 70, 85, 0.15) 0%, rgba(255, 70, 85, 0.05) 50%, transparent 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 70, 85, 0.2) 0%, transparent 70%);
            pointer-events: none;
            animation: pulseGlow 4s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 70, 85, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes pulseGlow {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.1);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #ff4655 50%, #ffffff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(255, 70, 85, 0.5);
            animation: gradientShift 3s ease infinite, fadeInDown 1s ease-out, textGlow 2s ease-in-out infinite;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% center;
            }
            50% {
                background-position: 100% center;
            }
            100% {
                background-position: 0% center;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes textGlow {
            0%, 100% {
                text-shadow: 0 0 40px rgba(255, 70, 85, 0.5), 0 0 80px rgba(255, 70, 85, 0.3);
            }
            50% {
                text-shadow: 0 0 60px rgba(255, 70, 85, 0.8), 0 0 120px rgba(255, 70, 85, 0.5);
            }
        }

        .hero-section p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.3s both;
            line-height: 1.8;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section .btn {
            padding: 1.2rem 3.5rem;
            font-size: 1.3rem;
            border-radius: 50px;
            animation: fadeInUp 1s ease-out 0.6s both, buttonPulse 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .hero-section .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .hero-section .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(255, 70, 85, 0.4), 0 0 40px rgba(255, 70, 85, 0.2);
            }
            50% {
                box-shadow: 0 0 30px rgba(255, 70, 85, 0.6), 0 0 60px rgba(255, 70, 85, 0.4);
            }
        }

        /* Floating particles animation */
        .hero-section .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 70, 85, 0.6);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h2 {
                font-size: 2rem;
            }

            .hero-section {
                padding: 6rem 0 4rem !important;
                min-height: 60vh;
            }

            .hero-section h1 {
                font-size: 2.5rem !important;
                letter-spacing: 1px !important;
            }

            .hero-section p {
                font-size: 1.1rem !important;
            }

            .hero-section .btn {
                padding: 1rem 2.5rem !important;
                font-size: 1.1rem !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .game-image {
                height: 250px;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Loading Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .game-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .game-card:nth-child(1) { animation-delay: 0.1s; }
        .game-card:nth-child(2) { animation-delay: 0.2s; }
        .game-card:nth-child(3) { animation-delay: 0.3s; }
        .game-card:nth-child(4) { animation-delay: 0.4s; }
        .game-card:nth-child(5) { animation-delay: 0.5s; }
        .game-card:nth-child(6) { animation-delay: 0.6s; }
        .game-card:nth-child(7) { animation-delay: 0.7s; }
        .game-card:nth-child(8) { animation-delay: 0.8s; }
