
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: sans-serif;
            background-color: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 50px;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'GodOfWar', sans-serif;
            font-size: 28px;
            font-weight: normal; /* Changed from bold since the font is already bold */
            background: linear-gradient(135deg, #ff4444, #880808);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(270deg, #ff4444, #880808);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: 0;
        padding-top: 0;
        }

        .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        }

        .hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.65);
        z-index: -1;
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-title {
            font-family: 'GodOfWar', sans-serif;
            font-size: 80px;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(360deg, #fff 10%, #880808 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideDown 1s ease-out;
            letter-spacing: 4px;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
        color: #eee; /* use white or very light gray */
        text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            animation: slideUp 1.5s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn {
            padding: 15px 40px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff4444, #880808);
            color: #fff;
            box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 68, 68, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-secondary:hover {
            background: #fff;
            color: #0a0a0a;
            transform: translateY(-3px);
        }

        /* Features Section */
        .features {
        position: relative;
        padding: 100px 50px;
        max-width: 1400px;
        margin: 0 auto;
        overflow: hidden;
        }

        .section-title {
            font-family: 'GodOfWar', sans-serif;
            text-align: center;
            font-size: 48px;
            font-weight: normal;
            margin-bottom: 60px;
            background: linear-gradient(270deg, #fff, #880808);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .features .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.85);
        z-index: -1;
        }

        .features-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        }

        .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        }

        .feature-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.3s ease;
            z-index: 0;
        }

        .feature-card:nth-child(1)::before {
            background-image: url('Images/kill.jpg');
        }

        .feature-card:nth-child(2)::before {
            background-image: url('Images/nine-realms (2).jpeg');
        }

        .feature-card:nth-child(3)::before {
            background-image: url('Images/kratos and son.jpg');
        }

        .feature-card:nth-child(4)::before {
            background-image: url('Images/kratos.jpg');
        }

        .feature-card:nth-child(5)::before {
            background-image: url('Images/kratos chained.jpg');
        }

        .feature-card:nth-child(6)::before {
            background-image: url('Images/kvisulas.jpg');
            image-rendering: crisp-edges;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .feature-card:hover::after {
            background: rgba(0, 0, 0, 0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .feature-title {
            font-family: 'GodOfWar', sans-serif;
            font-size: 24px;
            margin-bottom: 15px;
            color: #880808;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .feature-description {
            color: #ccc;
            line-height: 1.6;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        

        .feature-card:hover .feature-icon,
        .feature-card:hover .feature-title,
        .feature-card:hover .feature-description {
            opacity: 0;
            transform: translateY(-20px);
        }
        /* Story Section */
        .story {
            padding: 100px 50px;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
        }

        .story-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-content h2 {
            font-family: 'GodOfWar', sans-serif;
            font-size: 48px;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff, #880808);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .story-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 20px;
        }

        .overview-image {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        border: 2px solid rgba(74, 124, 158, 0.3);
        position: relative;
        }

        .overview-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Characters Section */
        .characters {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .character-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .character-card:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 20px 40px rgba(250, 250, 250, 0.3);
        }

        .character-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .character-info {
            padding: 20px;
        }

        .character-name {
            font-family: 'GodOfWar', sans-serif;
            font-size: 24px;
            margin-bottom: 10px;
            color: #880808;
        }

        .character-description {
            color: #ccc;
            font-size: 14px;
        }

        /* Footer */
        footer {
            background: #050505;
            padding: 50px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #880808;
        }

        .copyright {
            color: #666;
            margin-top: 30px;
        }

        /* Game Series Section */
        .favorite-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            transition: 0.3s;
        }

        .favorite-btn:hover {
            transform: scale(1.2);
        }
        
        .game-series {
            padding: 100px 50px;
            background: #0f0f0f;
            max-width: 1600px;
            margin: 0 auto;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .game-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: rgba(252, 252, 252, 0.5);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
        }

        .game-image {
            width: 100%;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .game-logo {
            font-family: 'Gods of War', sans-serif;
            font-size: 32px;
            font-weight: normal;
            color: #fff;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            letter-spacing: 2px;
            padding: 20px;
            z-index: 1;
        }

        .game-info {
            padding: 25px;
        }

        .game-title {
            font-family: 'GodOfWar', sans-serif;
            font-size: 22px;
            margin-bottom: 10px;
            color: #fff;
        }

        .game-platform,
        .game-date {
            font-size: 13px;
            color: #999;
            margin-bottom: 8px;
        }

        .game-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .btn-game {
            padding: 10px 20px;
            font-size: 14px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .btn-buy {
            background: linear-gradient(135deg, #ff4444, #880808);
            color: #fff;
        }

        .btn-buy:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
        }

        .btn-info {
            background: transparent;
            color: #4a9eff;
            border: 2px solid #4a9eff;
        }

        .btn-info:hover {
            background: #4a9eff;
            color: #fff;
            transform: translateY(-2px);
        }

            .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }
    
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            transition: 0.3s;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: rgba(10, 10, 10, 0.98);
                width: 100%;
                padding: 20px;
                transition: 0.3s;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            }
            
            .nav-links.active {
                left: 0;
            }
        }

            .jump-to-top-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #ff4444, #880808);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .jump-to-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .jump-to-top-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
            background: linear-gradient(135deg, #ff5555, #990909);
        }
        
        .jump-to-top-btn:active {
            transform: translateY(-2px);
        }
        
        .jump-to-top-btn svg {
            animation: bounce 2s infinite;
        }
        
        .jump-to-top-btn:hover svg {
            animation: none;
            transform: translateY(-3px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .jump-to-top-btn {
                width: 50px;
                height: 50px;
                bottom: 20px;
                left: 20px;
            }
        }
        
        /* Add a tooltip */
        .jump-to-top-btn::before {
            content: 'Back to Top';
            position: absolute;
            left: 70px;
            background: rgba(10, 10, 10, 0.95);
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 68, 68, 0.3);
        }
        
        .jump-to-top-btn:hover::before {
            opacity: 1;
            visibility: visible;
            left: 65px;
        }
        
        /* Hide tooltip on mobile */
        @media (max-width: 768px) {
            .jump-to-top-btn::before {
                display: none;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 48px;
            }

            .nav-links {
                gap: 20px;
            }

            .story-container {
                grid-template-columns: 1fr;
            }

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

            nav {
                padding: 20px;
            }

            .features, .story, .characters {
                padding: 60px 20px;
            }

            .game-series {
                padding: 60px 20px;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }
        }