* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #8B0000;
            --secondary: #FF8C00;
            --accent: #FFD700;
            --text-dark: #1A1A1A;
            --text-light: #595959;
            --bg-light: #F9F9F9;
            --bg-dark: #0F0F0F;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0,0,0,0.12);
            --shadow-hover: 0 12px 24px rgba(0,0,0,0.2);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.8;
            padding-bottom: 90px;
            font-size: 16px;
            animation: fadeInPage 1.2s ease-in-out;
        }
        @keyframes fadeInPage {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .container {
            width: 94%;
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-dark);
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
            border-bottom: 5px solid var(--secondary);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .logo {
            color: var(--accent);
            font-size: 2.3rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.5px;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary);
            font-style: italic;
            margin-left: 5px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li {
            margin-left: 45px;
            position: relative;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.1rem;
            padding: 8px 0;
            display: inline-block;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .btn {
            padding: 13px 28px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            font-size: 1.08rem;
            border: none;
            cursor: pointer;
            text-align: center;
            letter-spacing: 0.4px;
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--white);
            margin-right: 18px;
            box-shadow: 0 4px 8px rgba(255, 140, 0, 0.25);
        }
        .btn-download:hover {
            background-color: #E07B00;
            transform: translateY(-5px);
            box-shadow: 0 6px 14px rgba(255, 140, 0, 0.35);
        }
        .btn-login {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 8px rgba(139, 0, 0, 0.25);
        }
        .btn-login:hover {
            background-color: #6B0000;
            transform: translateY(-5px);
            box-shadow: 0 6px 14px rgba(139, 0, 0, 0.35);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            color: var(--white);
            cursor: pointer;
            background: none;
            border: none;
        }
        .btn-group {
            display: flex;
            align-items: center;
        }
        .hero {
            background: linear-gradient(rgba(15, 15, 15, 0.93), rgba(15, 15, 15, 0.93)), url('https://host.com/images/dueling-mace-warriors-hero.jpg') center/cover no-repeat;
            height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-bottom: 90px;
            border-radius: 0 0 35px 35px;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
        }
        .hero-content {
            max-width: 1100px;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 5.2rem;
            margin-bottom: 35px;
            color: var(--accent);
            text-shadow: 5px 5px 10px rgba(0,0,0,0.9);
            line-height: 1.3;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        .hero p {
            font-size: 1.6rem;
            margin-bottom: 50px;
            line-height: 2;
            color: #FAFAFA;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .btn-group {
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .hero .btn {
            padding: 18px 42px;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        .breadcrumb {
            margin-bottom: 35px;
            padding: 20px 0;
            border-bottom: 1px solid #E0E0E0;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            font-size: 1.05rem;
        }
        .breadcrumb li {
            margin-right: 15px;
        }
        .breadcrumb li:after {
            content: '/';
            margin-left: 15px;
            color: var(--text-light);
        }
        .breadcrumb li:last-child:after {
            content: '';
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 600;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 50px;
            margin-bottom: 90px;
        }
        .content-section {
            background-color: var(--white);
            padding: 50px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .sidebar-widget {
            background-color: var(--white);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .sidebar-widget:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-7px);
        }
        h2 {
            color: var(--primary);
            font-size: 2.6rem;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--secondary);
            font-family: 'Times New Roman', Times, serif;
            position: relative;
            text-transform: capitalize;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 120px;
            height: 3px;
            background-color: var(--accent);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.9rem;
            margin: 50px 0 30px;
            font-family: 'Times New Roman', Times, serif;
            position: relative;
            padding-left: 32px;
            text-transform: capitalize;
        }
        h3:before {
            content: "⚔️";
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 1.6rem;
        }
        h4 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 40px 0 25px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h4:before {
            content: "🔥";
            margin-right: 12px;
            font-size: 1.3rem;
        }
        p {
            margin-bottom: 32px;
            text-align: justify;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        em {
            color: var(--secondary);
            font-style: italic;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.15);
            padding: 22px 30px;
            border-left: 6px solid var(--accent);
            font-weight: 500;
            margin: 45px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-size: 1.2rem;
            line-height: 2;
        }
        .quote {
            font-style: italic;
            color: #404040;
            border-left: 7px solid var(--secondary);
            padding: 32px 36px;
            margin: 50px 0;
            background-color: rgba(255, 140, 0, 0.08);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            position: relative;
        }
        .quote:before {
            content: '"';
            font-size: 6rem;
            color: rgba(255, 140, 0, 0.2);
            position: absolute;
            top: -40px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 22px;
            font-weight: 600;
            color: var(--primary);
            font-style: normal;
            font-size: 1.15rem;
        }
        .feature-list, .bullet-list {
            list-style: none;
            margin: 40px 0 50px;
        }
        .feature-list li {
            margin-bottom: 30px;
            padding-left: 50px;
            position: relative;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .feature-list li:before {
            content: "🛡️";
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 1.6rem;
        }
        .bullet-list li {
            margin-bottom: 25px;
            padding-left: 42px;
            position: relative;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .bullet-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--secondary);
            font-size: 2.5rem;
        }
        .game-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin: 50px 0;
        }
        .stat-box {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: var(--transition);
            border: 1px solid #E8E8E8;
        }
        .stat-box:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            background-color: rgba(139, 0, 0, 0.06);
        }
        .stat-box h4 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1.3px;
            margin-top: 0;
            border-bottom: none;
            padding-bottom: 0;
        }
        .stat-box h4:before {
            content: '';
            margin-right: 0;
        }
        .stat-box p {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
            text-align: center;
            color: var(--secondary);
            line-height: 1.6;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            margin: 60px 0;
        }
        .gallery-img-container {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 4px solid var(--white);
        }
        .gallery-img-container:hover {
            transform: scale(1.06);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .gallery-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        .gallery-img:hover {
            transform: scale(1.08);
        }
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            color: var(--white);
            padding: 25px;
            font-size: 1.1rem;
            text-align: center;
            font-weight: 500;
        }
        .tabs {
            display: flex;
            margin: 45px 0;
            border-bottom: 2px solid #E8E8E8;
            position: relative;
            flex-wrap: wrap;
        }
        .tabs:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .tab {
            padding: 22px 35px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--text-light);
            transition: var(--transition);
            text-transform: capitalize;
        }
        .tab.active {
            border-bottom: 3px solid var(--secondary);
            color: var(--primary);
        }
        .tab-content {
            display: none;
            padding: 40px 0;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.7s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .sidebar-widget h3 {
            margin-top: 0;
            font-size: 1.7rem;
            padding-left: 25px;
            margin-bottom: 32px;
        }
        .sidebar-widget h3:before {
            content: "⭐";
            font-size: 1.4rem;
        }
        .genre-list, .tag-list {
            list-style: none;
            margin-top: 32px;
        }
        .genre-list li, .tag-list li {
            margin-bottom: 22px;
            padding-left: 32px;
            position: relative;
        }
        .genre-list li:before, .tag-list li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.4rem;
        }
        .genre-list a, .tag-list a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
            font-size: 1.1rem;
        }
        .genre-list a:hover, .tag-list a:hover {
            color: var(--secondary);
            text-decoration: underline;
            padding-left: 10px;
        }
        .download-widget {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            text-align: center;
            padding: 45px 40px;
        }
        .download-widget h3 {
            color: var(--white);
            border-bottom: none;
            margin-bottom: 32px;
            padding-left: 0;
        }
        .download-widget h3:before {
            content: "🎮";
            position: relative;
            right: 15px;
        }
        .download-widget p {
            color: #F5F5F5;
            margin-bottom: 40px;
            text-align: center;
            font-size: 1.2rem;
        }
        .download-btn {
            background-color: var(--white);
            color: var(--primary);
            margin-top: 20px;
            width: 100%;
            padding: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        .download-btn:hover {
            background-color: var(--accent);
            color: var(--bg-dark);
            transform: translateY(-6px);
        }
        .update-list {
            list-style: none;
            margin-top: 32px;
        }
        .update-list li {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px dashed #E8E8E8;
        }
        .update-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .update-date {
            display: block;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .recommendation {
            background-color: rgba(139, 0, 0, 0.07);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            border: 1px solid rgba(139, 0, 0, 0.15);
        }
        .recommendation h4 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }
        .recommendation h4:before {
            content: "👍";
            margin-right: 15px;
        }
        .recommendation p {
            margin-bottom: 0;
            font-size: 1.15rem;
        }
        footer {
            background-color: var(--bg-dark);
            color: var(--white);
            padding: 90px 0 50px;
            border-top: 7px solid var(--secondary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 40px;
            font-size: 1.6rem;
            padding-left: 0;
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            padding-bottom: 18px;
        }
        .footer-column h3:before {
            content: '';
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #C9C9C9;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .subscription {
            margin-top: 35px;
        }
        .subscription input[type="email"] {
            padding: 18px 22px;
            width: 100%;
            margin-bottom: 25px;
            border-radius: var(--border-radius);
            border: none;
            font-size: 1.1rem;
        }
        .subscription button {
            background-color: var(--accent);
            color: var(--bg-dark);
            padding: 18px 30px;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .subscription button:hover {
            background-color: #FFC107;
            transform: translateY(-4px);
        }
        .copyright {
            text-align: center;
            padding-top: 45px;
            border-top: 1px solid rgba(255, 255, 255, 0.18);
            font-size: 1.1rem;
            color: #A6A6A6;
            line-height: 2.3;
        }
        .copyright a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .scroll-to-top {
            position: fixed;
            bottom: 50px;
            right: 50px;
            background-color: var(--secondary);
            color: var(--white);
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            border: 3px solid var(--white);
        }
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .scroll-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero h1 {
                font-size: 4.5rem;
            }
            .game-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .image-gallery {
                gap: 30px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--bg-dark);
                padding: 40px;
                box-shadow: 0 15px 25px rgba(0,0,0,0.25);
                border-top: 1px solid rgba(255, 255, 255, 0.18);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 22px 0;
                margin-left: 0;
            }
            .nav-links a:after {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                margin-left: auto;
                margin-right: 25px;
            }
            .header-content {
                align-items: flex-start;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero {
                height: 85vh;
            }
            .hero h1 {
                font-size: 4rem;
            }
            .hero p {
                font-size: 1.5rem;
            }
            .image-gallery {
                grid-template-columns: 1fr;
            }
            .gallery-img {
                height: 380px;
            }
            .content-section {
                padding: 45px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .btn-group {
                margin-top: 30px;
                width: 100%;
                justify-content: center;
                margin-left: 0;
                margin-right: 0;
            }
            .btn {
                flex: 1;
                margin-right: 15px;
                padding: 16px;
                font-size: 1.1rem;
            }
            .btn:last-child {
                margin-right: 0;
            }
            .hero {
                height: 80vh;
            }
            .hero h1 {
                font-size: 3.5rem;
            }
            .hero p {
                font-size: 1.4rem;
            }
            .content-section {
                padding: 40px 35px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .game-stats {
                grid-template-columns: 1fr;
            }
            h2 {
                font-size: 2.4rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .tabs {
                flex-wrap: wrap;
            }
            .tab {
                padding: 20px 25px;
                font-size: 1.1rem;
                flex: 1;
                text-align: center;
            }
            .highlight, .quote {
                padding: 20px 25px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            .hero {
                height: 75vh;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero .btn {
                padding: 16px 32px;
                font-size: 1.1rem;
                width: 100%;
                margin-right: 0;
            }
            .breadcrumb ul {
                font-size: 1rem;
            }
            .sidebar-widget {
                padding: 30px;
            }
            .game-stats {
                gap: 25px;
            }
            .stat-box {
                padding: 35px;
            }
            .stat-box p {
                font-size: 2.2rem;
            }
            .gallery-img {
                height: 320px;
            }
            .footer {
                padding: 70px 0 40px;
            }
            .copyright {
                font-size: 1rem;
            }
            .scroll-to-top {
                width: 60px;
                height: 60px;
                bottom: 40px;
                right: 40px;
                font-size: 1.8rem;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }
        @media print {
            header, footer, .hero, .sidebar, .scroll-to-top, .btn-group {
                display: none !important;
            }
            body {
                background: white;
                color: black;
                font-size: 14px;
            }
            .content-section {
                box-shadow: none;
                padding: 0;
            }
            .image-gallery {
                display: none;
            }
        }
