        :root {
            --primary-gold: #D4AF37;
            --secondary-gold: #B8860B;
            --bronze: #CD7F32;
            --dark-red: #8B0000;
            --deep-red: #A0522D;
            --warrior-black: #1C1C1C;
            --charcoal: #2F2F2F;
            --ember: #FF4500;
            --warm-amber: #FFBF00;
            --ancient-stone: #696969;
            --parchment: #F5DEB3;
            --shadow: rgba(0, 0, 0, 0.8);
        }

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

        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--warrior-black);
            color: var(--parchment);
            overflow-x: hidden;
        }

        /* Ancient Warrior Background Elements */
        .warrior-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(135deg, var(--warrior-black) 0%, var(--charcoal) 50%, var(--dark-red) 100%);
        }

        .flames-container {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .flame-particle {
            position: absolute;
            width: 4px;
            height: 8px;
            background: linear-gradient(to top, var(--ember), var(--warm-amber));
            border-radius: 50% 50% 0 0;
            opacity: 0.7;
            animation: flameRise 3s infinite linear;
        }

        @keyframes flameRise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        .ancient-symbols {
            position: fixed;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
            z-index: -1;
        }

        .warrior-sparkles {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .sparkle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: sparkle 4s infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* Age Gate Styles */
        .age-gate-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--warrior-black) 0%, var(--charcoal) 50%, var(--dark-red) 100%);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            visibility: visible;
            transition: all 0.5s ease;
        }

        .age-gate-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .age-gate-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .age-gate-content {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(47, 47, 47, 0.9));
            border: 3px solid var(--primary-gold);
            border-radius: 20px;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .age-gate-header {
            margin-bottom: 2rem;
        }

        .age-gate-logo .brand-name {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-shadow: 2px 2px 4px var(--shadow);
            letter-spacing: 2px;
        }

        .age-gate-decoration {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .age-gate-main {
            margin-bottom: 2rem;
        }

        .age-gate-title {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .age-gate-title .title-mystical {
            color: var(--warm-amber);
            text-shadow: 0 0 20px var(--warm-amber), 2px 2px 4px var(--shadow);
            display: block;
            font-size: 0.7em;
            letter-spacing: 3px;
            margin-bottom: 0.3rem;
        }

        .age-gate-title .title-main {
            color: var(--primary-gold);
            text-shadow: 0 0 30px var(--primary-gold), 4px 4px 8px var(--shadow);
            display: block;
            letter-spacing: 4px;
        }

        .age-gate-message {
            margin-bottom: 2rem;
        }

        .age-gate-text {
            font-size: 1.2rem;
            color: var(--parchment);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .age-gate-subtext {
            font-size: 1rem;
            color: var(--ancient-stone);
            line-height: 1.5;
        }

        .age-gate-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .age-gate-btn {
            padding: 1rem 2rem;
            border: 2px solid;
            border-radius: 8px;
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: none;
        }

        .age-gate-yes {
            background: linear-gradient(135deg, var(--primary-gold), var(--bronze));
            color: var(--warrior-black);
            border-color: var(--primary-gold);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }

        .age-gate-yes:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, var(--warm-amber), var(--primary-gold));
        }

        .age-gate-no {
            background: transparent;
            color: var(--parchment);
            border-color: var(--ancient-stone);
        }

        .age-gate-no:hover {
            background: rgba(139, 0, 0, 0.3);
            border-color: var(--dark-red);
            color: var(--parchment);
        }

        .age-gate-footer {
            border-top: 1px solid var(--bronze);
            padding-top: 1rem;
        }

        .age-gate-disclaimer {
            font-size: 0.9rem;
            color: var(--ancient-stone);
            line-height: 1.4;
        }

        /* Age Gate Background Effects */
        .age-gate-flames {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .age-gate-sparkles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .age-gate-flame-particle {
            position: absolute;
            width: 3px;
            height: 6px;
            background: linear-gradient(to top, var(--ember), var(--warm-amber));
            border-radius: 50% 50% 0 0;
            opacity: 0.6;
            animation: ageGateFlameRise 4s infinite linear;
        }

        .age-gate-sparkle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: ageGateSparkle 3s infinite;
        }

        @keyframes ageGateFlameRise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        @keyframes ageGateSparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* Responsive Age Gate */
        @media (max-width: 768px) {
            .age-gate-content {
                padding: 2rem;
                margin: 1rem;
            }

            .age-gate-title {
                font-size: 2rem;
            }

            .age-gate-buttons {
                gap: 0.8rem;
            }

            .age-gate-btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(139, 0, 0, 0.9));
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
            z-index: 1000;
            padding: 1rem 0;
        }

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

        .brand {
            text-decoration: none;
            color: var(--primary-gold);
        }

        .brand-name {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px var(--shadow);
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            color: var(--parchment);
            text-decoration: none;
            font-family: 'Marcellus', serif;
            font-weight: 400;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
        }

        .nav-link:hover {
            color: var(--primary-gold);
            text-shadow: 0 0 10px var(--primary-gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-gold);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: 
                linear-gradient(45deg, rgba(139, 0, 0, 0.3), rgba(28, 28, 28, 0.8)),
                radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            padding: 8rem 0 4rem;
        }

        .bg-cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warrior-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 L18,10 L10,18 L2,10 Z" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23warrior-pattern)"/></svg>') repeat;
            opacity: 0.3;
            z-index: -1;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            padding: 0 2rem;
        }

        .hero-content {
            position: relative;
        }

        .hero-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .title-mystical {
            color: var(--warm-amber);
            text-shadow: 0 0 20px var(--warm-amber), 2px 2px 4px var(--shadow);
            display: block;
            font-size: 0.7em;
            letter-spacing: 4px;
            margin-bottom: 0.5rem;
        }

        .title-main {
            color: var(--primary-gold);
            text-shadow: 0 0 30px var(--primary-gold), 4px 4px 8px var(--shadow);
            display: block;
            letter-spacing: 6px;
            position: relative;
        }

        .title-decoration {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            border-radius: 2px;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--parchment);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            text-shadow: 1px 1px 2px var(--shadow);
        }

        .hero-cta {
            margin-top: 3rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--bronze));
            color: var(--warrior-black);
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--primary-gold);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, var(--warm-amber), var(--primary-gold));
        }

        .button-sparkle {
            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.6s ease;
        }

        .cta-button:hover .button-sparkle {
            left: 100%;
        }

        /* Section Styles */
        .section {
            padding: 6rem 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, var(--dark-red), var(--bronze));
            color: var(--parchment);
            font-family: 'Marcellus', serif;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 25px;
            margin-bottom: 1.5rem;
            border: 1px solid var(--primary-gold);
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px var(--shadow);
        }

        .section-divider {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* Info Sections */
        .info-sections {
            background: linear-gradient(45deg, rgba(47, 47, 47, 0.5), rgba(139, 0, 0, 0.3));
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.8), rgba(47, 47, 47, 0.6));
            border: 2px solid var(--bronze);
            border-radius: 12px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .info-header {
            margin-bottom: 1.5rem;
        }

        .info-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        .info-text {
            color: var(--parchment);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(28, 28, 28, 0.8));
        }

        .about-content {
            display: flex;
            justify-content: center;
        }

        .about-card {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.9), rgba(47, 47, 47, 0.7));
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 3rem;
            max-width: 800px;
            position: relative;
            backdrop-filter: blur(15px);
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--parchment);
            text-align: center;
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(45deg, rgba(47, 47, 47, 0.3), rgba(139, 0, 0, 0.2));
        }

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

        .feature-card {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.8), rgba(47, 47, 47, 0.6));
            border: 2px solid var(--bronze);
            border-radius: 15px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-gold);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
        }

        .feature-content {
            position: relative;
            z-index: 2;
        }

        .feature-title {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px var(--shadow);
        }

        .feature-text {
            color: var(--parchment);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .feature-glow {
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
            opacity: 0.1;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover .feature-glow {
            opacity: 0.2;
        }

        /* Game Section */
        .why-section {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(28, 28, 28, 0.9));
        }

        .why-content {
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 4rem;
            align-items: center;
        }

        .why-text-card {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.9), rgba(47, 47, 47, 0.7));
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 3rem;
            backdrop-filter: blur(15px);
        }

        .why-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--parchment);
        }

        .game-container {
            position: relative;
        }

        .game-frame {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.9), rgba(47, 47, 47, 0.7));
            border: 3px solid var(--primary-gold);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(15px);
        }

        .game-header {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .game-status {
            background: linear-gradient(135deg, var(--ember), var(--warm-amber));
            color: var(--warrior-black);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
        }

        .play-ground-area {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        /* About Us Section */
        .about-us-section {
            background: linear-gradient(45deg, rgba(47, 47, 47, 0.4), rgba(139, 0, 0, 0.3));
        }

        .about-us-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-us-image {
            position: relative;
        }

        .image-frame {
            border: 3px solid var(--primary-gold);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .image-frame img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-us-content {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.9), rgba(47, 47, 47, 0.7));
            border: 2px solid var(--bronze);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(15px);
        }

        .content-section {
            margin-bottom: 2.5rem;
        }

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

        .about-us-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px var(--shadow);
        }

        .about-us-text {
            color: var(--parchment);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(139, 0, 0, 0.8));
            border-top: 3px solid var(--primary-gold);
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-brand .brand-name {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: var(--primary-gold);
            text-shadow: 2px 2px 4px var(--shadow);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-link {
            color: var(--parchment);
            text-decoration: none;
            font-family: 'Marcellus', serif;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary-gold);
            text-shadow: 0 0 8px var(--primary-gold);
        }

        .footer-disclaimer {
            background: rgba(28, 28, 28, 0.6);
            border: 1px solid var(--bronze);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
        }

        .footer-disclaimer p {
            color: var(--parchment);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid var(--bronze);
        }

        .footer-copyright {
            color: var(--ancient-stone);
            font-family: 'Marcellus', serif;
        }

        .footer-badges {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .badge {
            display: block;
            transition: transform 0.3s ease;
        }

        .badge:hover {
            transform: scale(1.1);
        }

        .badge img {
            height: 77px;
            width: auto;
            filter: brightness(0.9) sepia(10%) hue-rotate(20deg);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-title {
                font-size: 3rem;
            }

            .title-mystical {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .why-content,
            .about-us-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-main,
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }

            .info-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .section {
                padding: 4rem 0;
            }

            .info-card,
            .feature-card,
            .about-card,
            .why-text-card,
            .about-us-content {
                padding: 2rem;
            }
        }

        
.content {
    padding: 40px 10%;
   
}
.content-block {}

.content-block h2 {
    color: #d4af37;
    font-size: 2rem;
}

.content-block p,
ul {
    color: rgb(205 184 149);
    font-size: 1.2rem;
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}