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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #0e0e10;
            color: #efeff1;
        }

        nav {
            background-color: #18181b;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        nav .logo a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: inherit;
            text-decoration: none;
        }

        nav .logo a:hover {
            opacity: 0.8;
        }

        nav img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        nav .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: #cf3227;
            text-transform: uppercase;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav ul li {
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.2s ease;
            text-transform: capitalize;
        }

        nav ul a {
            color: inherit;
            text-decoration: none;
        }

        nav ul li:hover {
            background-color: #2c2c34;
        }

        nav ul li span {
            font-size: 12px;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #d3d2d2;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #797979;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown:hover .dropbtn {
            background-color: #3e8e41;
        }

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

        #twitch-embed {
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
        }

        .ip-container {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        #server-ip {
            font-family: monospace;
            gap: 2rem;
            margin: 0;
            font-weight: 600;
            font-size: 20px
        }

        .copy-button {
            background-color: #423a39;
            color: white;
            border: none;
            padding: 0.25rem 0.55rem;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.875rem;
        }

        .copy-button:hover {
            background-color: #b52a20;
        }

        .copy-button.copied {
            background-color: #132266;
        }

        /* Added button styles for GameTracker and Steam buttons */
        .button-container {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 2rem auto;
            max-width: 960px;
        }

        .button-container {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 2rem auto;
            max-width: 960px;
        }

        .btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            color: inherit;
        }

        .btn img {
            height: 25px;
            width: auto;
            object-fit: contain;
        }

        .btn-tan {
            background-color: #d389f0;
            color: #1a1a1a;
        }

        .btn-tan:hover {
            background-color: #9c6bd3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(210, 180, 140, 0.3);
        }

        .btn-gray {
            background-color: #4f555a;
            color: #ffffff;
        }

        .btn-gray:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        .btn-gray:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        .btn-stats:hover {
            opacity: 75%;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        .btn-prize:hover {
            opacity: 75%;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        /* Added content section with off-white background */
        .history-section {
            background-color: #444;
            padding: 4rem 2rem;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .content-text {
            flex: 1;
            gap: 4px;
            color: #2c2c2c;
        }

        .content-text h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #f8f8f8;
        }

        .content-text p {
            line-height: 1.6;
            margin: 0 0 1.5rem 0;
            line-height: 1.7;
            font-size: 1.1rem;
            color: #d1d1d1;
        }


        .content-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 450px;
        }

        .content-image img {
            height: 350px;
            width: auto;
        }

        .stats-section {
            background-color: #e0e0e0;
            padding: 4rem 2rem;
        }

        .stats-section .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 3rem;
            align-items: center;
            flex-direction: row-reverse;
        }

        .stats-section .content-text {
            flex: 1;
            gap: 4px;
            color: #2c2c2c;
        }

        .stats-section .content-text h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #9b1010;
        }

        .stats-section .content-text p {
            line-height: 1.6;
            margin: 0 0 1.5rem 0;
            line-height: 1.7;
            font-size: 1.1rem;
            color: #160404;
        }

        .content-text .legend {
            font-size: 8px;
        }

        footer {
            background-color: #18181b;
            padding: 2rem;
            margin-top: 3rem;
            border-top: 2px solid #2c2c34;
        }

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

        .footer-text {
            color: #a0a0a0;
            font-size: 0.9rem;
            margin: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

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

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

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

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .button-container {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .content-wrapper {
                flex-direction: column;
            }

            .content-text h2 {
                font-size: 1.5rem;
            }
        }