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

        :root {
            --gold: #d4a574;
            --gold-light: #f4c896;
            --gold-dark: #8b6f47;
            --bronze: #cd7f32;
            --cyan: #4dd9e8;
            --cyan-dark: #2a8a95;
            --purple: #9370db;
            --dark-bg: #0d1117;
            --panel-bg: #1a1f2e;
            --panel-border: #2d3748;
            --dropdown-gap: 30px;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: radial-gradient(ellipse at center, #1a1f2e 0%, #0d1117 100%);
            color: #e8e8e8;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            padding-bottom: 100px;
        }

        /* Animated background with particles */
        /* Animated background with particles */
        .voxel-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
			background: #17232f;
            background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='120' height='120.1' patternTransform='scale(2) rotate(10)'><rect x='0' y='0' width='100%' height='100%' fill='%2300000010'/><path d='M79.6-6.4v24.8H62.7V2.3h7.4v11h4.3V-1.9H58.5v24.6h25.4V-6.4H89v29.1h25.4V-1.9H98.5v16.1h4.2V2.3h7.4v16.1H93.2V-6.4zm-41.7 76v4.2H54V57.9H29.5v25.3h29.2v5.1H29.5v25.3H54V97.7H38.8v4.2h11v7.4H33.7V92.4h25v21.2h21v24.8l-17-15.9h11.6v-4.2H58.4v4.2l21.1 20.3h4.2v-29h5.1v29H93l21.1-20.3v-4.2H98.2v4.2h11.6l-16.9 16.1v-24.8h21.4V92.6h24.6l-16.1 16.9V97.9h-4.2v15.9h4.2l20.3-21.1v-4.2h-28.8v-5.1h28.8v-4.2l-20.3-21.1h-4.2V74h4.2V62.4l16.1 16.9h-24.6V58.1H92.9V33.3h16.9v16.1h-7.4V37.5h-4.2v16.1h15.9V29.1H88.8v29h-5.1v-29H58.5v24.5h15.9V38.4h-4.2v11h-7.4V33.3h16.9v24.8h-21v21.2h-25V62.4h16.1v7.4H37.9zm25-7.4h47.4v47.4H62.9zM0 52.5h52.5V0H0zM4 3.9h44.6v44.6H4zm-9.5 88.8h24.6v16.9H3v-7.4h11v-4.3H-1.2v15.9h24.5V88.4H-5.5v-5.1h28.8V57.9H-1.2v15.9h16.1v-4.2H3v-7.4h16.1v16.9H-5.5z'  stroke-width='1' stroke='none' fill='%2302091524'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>")
        }

        .voxel-bg::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(
                    circle at 20% 30%, 
                    rgba(77, 217, 232, 0.13) 0%, 
                    rgba(77, 217, 232, 0.12) 10%,
                    rgba(77, 217, 232, 0.11) 15%,
                    rgba(77, 217, 232, 0.10) 20%,
                    rgba(77, 217, 232, 0.09) 25%,
                    rgba(77, 217, 232, 0.08) 30%,
                    rgba(77, 217, 232, 0.07) 35%,
                    rgba(77, 217, 232, 0.06) 40%,
                    rgba(77, 217, 232, 0.05) 50%,
                    rgba(77, 217, 232, 0.04) 60%,
                    rgba(77, 217, 232, 0.03) 70%,
                    rgba(77, 217, 232, 0.02) 75%,
                    transparent 80%
                ),
                radial-gradient(
                    circle at 80% 70%, 
                    rgba(147, 112, 219, 0.12) 0%,
                    rgba(147, 112, 219, 0.11) 10%,
                    rgba(147, 112, 219, 0.10) 15%,
                    rgba(147, 112, 219, 0.09) 20%,
                    rgba(147, 112, 219, 0.08) 25%,
                    rgba(147, 112, 219, 0.07) 30%,
                    rgba(147, 112, 219, 0.06) 35%,
                    rgba(147, 112, 219, 0.05) 40%,
                    rgba(147, 112, 219, 0.04) 50%,
                    rgba(147, 112, 219, 0.03) 60%,
                    rgba(147, 112, 219, 0.02) 70%,
                    rgba(147, 112, 219, 0.01) 75%,
                    transparent 80%
                );
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            pointer-events: none;
            bottom: -50px;
            will-change: transform, opacity;
            opacity: 0.7;
        }

        /* SVG particle styles */
        .particle svg {
            display: block;
            filter: drop-shadow(0 0 4px rgba(212, 165, 116, 0.6));
        }

        /* Glow pulse animation for sparkle effect */
        @keyframes particleGlow {
            0%, 100% { 
                filter: drop-shadow(0 0 4px rgba(212, 165, 116, 0.6));
            }
            50% { 
                filter: drop-shadow(0 0 8px rgba(212, 165, 116, 0.8));
            }
        }

        .particle.sparkle svg {
            animation: particleGlow 3s ease-in-out infinite;
        }

        /* Base animation - particles float upward */
        @keyframes particleFloat {
            0% { 
                transform: translateY(0) translateX(0) scale(0.3) rotate(0deg);
                opacity: 0;
            }
            5% { 
                opacity: 0.7;
            }
            50% {
                opacity: 0.8;
            }
            95% { 
                opacity: 0.6;
            }
            100% { 
                transform: translateY(calc(-100vh - 150px)) translateX(var(--drift)) scale(1) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes particleFloatWave {
            0% { 
                transform: translateY(0) translateX(0) scale(0.3) rotate(0deg);
                opacity: 0;
            }
            5% { 
                opacity: 0.7;
            }
            25% {
                transform: translateY(-25vh) translateX(-20px) scale(0.6) rotate(90deg);
            }
            50% {
                transform: translateY(-50vh) translateX(20px) scale(0.8) rotate(180deg);
                opacity: 0.8;
            }
            75% {
                transform: translateY(-75vh) translateX(-15px) scale(0.9) rotate(270deg);
            }
            95% { 
                opacity: 0.5;
            }
            100% { 
                transform: translateY(calc(-100vh - 150px)) translateX(10px) scale(1) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes particleFloatSpiral {
            0% { 
                transform: translateY(0) translateX(0) scale(0.2) rotate(0deg);
                opacity: 0;
            }
            5% { 
                opacity: 0.6;
            }
            20% {
                transform: translateY(-20vh) translateX(30px) scale(0.5) rotate(72deg);
            }
            40% {
                transform: translateY(-40vh) translateX(-25px) scale(0.7) rotate(144deg);
            }
            60% {
                transform: translateY(-60vh) translateX(35px) scale(0.85) rotate(216deg);
                opacity: 0.7;
            }
            80% {
                transform: translateY(-80vh) translateX(-20px) scale(0.95) rotate(288deg);
            }
            95% { 
                opacity: 0.4;
            }
            100% { 
                transform: translateY(calc(-100vh - 150px)) translateX(0px) scale(1) rotate(360deg);
                opacity: 0;
            }
        }

        /* Particle variations */
        .particle:nth-child(1) { 
            left: 8%; 
            animation: particleFloat 22s infinite linear;
            animation-delay: -2s;
            --drift: 30px;
        }

        .particle:nth-child(2) { 
            left: 23%; 
            animation: particleFloatWave 28s infinite linear;
            animation-delay: -8s;
            --drift: -25px;
        }

        .particle:nth-child(3) { 
            left: 45%; 
            animation: particleFloatSpiral 25s infinite linear;
            animation-delay: -15s;
            --drift: 40px;
        }

        .particle:nth-child(4) { 
            left: 62%; 
            animation: particleFloat 30s infinite linear;
            animation-delay: -5s;
            --drift: -35px;
        }

        .particle:nth-child(5) { 
            left: 85%; 
            animation: particleFloatWave 24s infinite linear;
            animation-delay: -12s;
            --drift: 20px;
        }

        .particle:nth-child(6) { 
            left: 15%; 
            animation: particleFloatSpiral 27s infinite linear;
            animation-delay: -18s;
            --drift: -30px;
        }

        .particle:nth-child(7) { 
            left: 38%; 
            animation: particleFloat 26s infinite linear;
            animation-delay: -7s;
            --drift: 45px;
        }

        .particle:nth-child(8) { 
            left: 72%; 
            animation: particleFloatWave 23s infinite linear;
            animation-delay: -20s;
            --drift: -20px;
        }

        .particle:nth-child(9) { 
            left: 55%; 
            animation: particleFloatSpiral 29s infinite linear;
            animation-delay: -3s;
            --drift: 35px;
        }

        .particle:nth-child(10) { 
            left: 92%; 
            animation: particleFloat 25s infinite linear;
            animation-delay: -16s;
            --drift: -40px;
        }

        .particle:nth-child(11) { 
            left: 28%; 
            animation: particleFloatWave 31s infinite linear;
            animation-delay: -10s;
            --drift: 28px;
        }

        .particle:nth-child(12) { 
            left: 68%; 
            animation: particleFloatSpiral 24s infinite linear;
            animation-delay: -22s;
            --drift: -32px;
        }

        .particle:nth-child(13) { 
            left: 5%; 
            animation: particleFloat 27s infinite linear;
            animation-delay: -13s;
            --drift: 38px;
        }

        .particle:nth-child(14) { 
            left: 48%; 
            animation: particleFloatWave 26s infinite linear;
            animation-delay: -6s;
            --drift: -28px;
        }

        .particle:nth-child(15) { 
            left: 78%; 
            animation: particleFloatSpiral 28s infinite linear;
            animation-delay: -19s;
            --drift: 42px;
        }

        .particle:nth-child(16) { 
            left: 12%; 
            animation: particleFloat 24s infinite linear;
            animation-delay: -11s;
            --drift: -15px;
        }

        .particle:nth-child(17) { 
            left: 65%; 
            animation: particleFloatWave 29s infinite linear;
            animation-delay: -4s;
            --drift: 25px;
        }

        .particle:nth-child(18) { 
            left: 88%; 
            animation: particleFloatSpiral 26s infinite linear;
            animation-delay: -17s;
            --drift: -38px;
        }

        .particle:nth-child(19) { 
            left: 35%; 
            animation: particleFloat 23s infinite linear;
            animation-delay: -21s;
            --drift: 32px;
        }

        .particle:nth-child(20) { 
            left: 58%; 
            animation: particleFloatWave 27s infinite linear;
            animation-delay: -9s;
            --drift: -22px;
        }


        /* Main container */
        .container {
            position: relative;
            z-index: 1;
            max-width: 1240px;
            width: 90%;
            padding: 40px 0 40px 0;
            margin: 0 auto;
        }



        /* hero */
        .hero-container {
            max-width: 1240px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 10;
            animation: heroAppear 1.2s ease-out;
            height: 500px;
            background-image: url("https://r.pixita.com/voxel-stories-hero-bg.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            box-shadow: 
                0 15px 45px rgba(0, 0, 0, 0.5),
                inset 0 0 30px rgba(212, 165, 116, 0.05);
            position: relative;
        }

        .hero-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
            z-index: 1;
        }

        @keyframes heroAppear {
            0% { opacity: 0; transform: scale(0.8) translateY(-20px); }
            100% { opacity: 1; transform: scale(1) translateY(0); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            text-align: center;
            padding: 40px;
            color: white;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--gold-light);
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 8px;
            text-shadow: 
                0 0 30px rgba(212, 165, 116, 0.8),
                0 0 60px rgba(212, 165, 116, 0.4),
                2px 2px 8px rgba(0, 0, 0, 0.8);
            animation: titleGlow 3s ease-in-out infinite alternate;
            position: relative;
        }

        @keyframes titleGlow {
            0% { 
                text-shadow: 
                    0 0 30px rgba(212, 165, 116, 0.8),
                    0 0 60px rgba(212, 165, 116, 0.4),
                    2px 2px 8px rgba(0, 0, 0, 0.8);
            }
            100% { 
                text-shadow: 
                    0 0 40px rgba(212, 165, 116, 1),
                    0 0 80px rgba(212, 165, 116, 0.6),
                    2px 2px 8px rgba(0, 0, 0, 0.8);
            }
        }

        .hero-subtitle {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: rgba(232, 232, 232, 0.95);
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            max-width: 700px;
            line-height: 1.6;
        }

        /* Ornate frame container */
        .ornate-frame {
            position: relative;
            background: linear-gradient(145deg, rgba(26, 31, 46, 0.95), rgba(13, 17, 23, 0.95));
            padding: 60px 50px 50px;
            margin-top: 0;
            box-shadow: 
                0 30px 90px rgba(0, 0, 0, 0.7),
                inset 0 0 60px rgba(212, 165, 116, 0.05);
            border: 3px solid var(--gold-dark);
            position: relative;
        }

        /* Ornate corners */
        .corner {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 4px solid var(--gold);
            pointer-events: none;
        }

        .corner::before,
        .corner::after {
            content: '';
            position: absolute;
            background: var(--gold-light);
            box-shadow: 0 0 15px var(--gold);
        }

        /* Top-left corner */
        .corner.tl {
            top: -3px;
            left: -3px;
            border-right: none;
            border-bottom: none;
            border-top-left-radius: 2px;
        }

        .corner.tl::before {
            width: 25px;
            height: 4px;
            top: -4px;
            left: -4px;
        }

        .corner.tl::after {
            width: 4px;
            height: 25px;
            top: -4px;
            left: -4px;
        }

        /* Top-right corner */
        .corner.tr {
            top: -3px;
            right: -3px;
            border-left: none;
            border-bottom: none;
            border-top-right-radius: 2px;
        }

        .corner.tr::before {
            width: 25px;
            height: 4px;
            top: -4px;
            right: -4px;
        }

        .corner.tr::after {
            width: 4px;
            height: 25px;
            top: -4px;
            right: -4px;
        }

        /* Bottom-left corner */
        .corner.bl {
            bottom: -3px;
            left: -3px;
            border-right: none;
            border-top: none;
            border-bottom-left-radius: 2px;
        }

        .corner.bl::before {
            width: 25px;
            height: 4px;
            bottom: -4px;
            left: -4px;
        }

        .corner.bl::after {
            width: 4px;
            height: 25px;
            bottom: -4px;
            left: -4px;
        }

        /* Bottom-right corner */
        .corner.br {
            bottom: -3px;
            right: -3px;
            border-left: none;
            border-top: none;
            border-bottom-right-radius: 2px;
        }

        .corner.br::before {
            width: 25px;
            height: 4px;
            bottom: -4px;
            right: -4px;
        }

        .corner.br::after {
            width: 4px;
            height: 25px;
            bottom: -4px;
            right: -4px;
        }

        /* Decorative edge elements */
        .edge-decoration {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--gold-light);
            transform: rotate(45deg);
            box-shadow: 0 0 10px var(--gold);
            animation: edgePulse 2s ease-in-out infinite;
        }

        @keyframes edgePulse {
            0%, 100% { opacity: 0.6; box-shadow: 0 0 10px var(--gold); }
            50% { opacity: 1; box-shadow: 0 0 20px var(--gold); }
        }

        .edge-decoration.top {
            top: -3px;
            left: 50%;
            animation-delay: 0s;
        }

        .edge-decoration.bottom {
            bottom: -3px;
            left: 50%;
            animation-delay: 1s;
        }

        .edge-decoration.left {
            left: -3px;
            top: 50%;
            animation-delay: 0.5s;
        }

        .edge-decoration.right {
            right: -3px;
            top: 50%;
            animation-delay: 1.5s;
        }

        /* Inner frame glow */
        .ornate-frame::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border: 1px solid rgba(212, 165, 116, 0.3);
            pointer-events: none;
            box-shadow: inset 0 0 30px rgba(77, 217, 232, 0.1);
        }

        /* Content sections */
        .content-section {
            position: relative;
            z-index: 1;
        }

        .content-section h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--gold-light);
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 4px;
            text-align: center;
            text-shadow: 
                0 0 20px rgba(212, 165, 116, 0.6),
                2px 2px 4px rgba(0, 0, 0, 0.8);
            position: relative;
        }

        .content-section h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 15px auto 0;
            box-shadow: 0 0 10px var(--gold);
        }

        .content-section p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(232, 232, 232, 0.9);
            font-weight: 500;
            text-align: center;
            margin-bottom: 35px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Divider */
        .divider {
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--gold-dark), 
                var(--gold), 
                var(--gold-dark), 
                transparent);
            margin: 35px auto;
            position: relative;
            box-shadow: 0 0 15px rgba(212, 165, 116, 0.4);
        }

        .divider::before {
            content: '◆';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--gold-light);
            font-size: 1.2rem;
            background: var(--panel-bg);
            padding: 0 15px;
            text-shadow: 0 0 15px var(--gold);
        }

        /* Discord section */
        .discord-section {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(114, 137, 218, 0.15));
            border: 2px solid rgba(88, 101, 242, 0.4);
            border-left: 4px solid #5865F2;
            border-radius: 12px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            box-shadow: 
                0 10px 30px rgba(88, 101, 242, 0.2),
                inset 0 0 30px rgba(88, 101, 242, 0.08);
            position: relative;
            overflow: hidden;
        }

        .discord-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.15), transparent);
            animation: discordShine 4s infinite;
        }

        @keyframes discordShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .discord-content {
            flex: 1;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .discord-section h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: #949cf7;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-shadow: 
                0 0 15px rgba(88, 101, 242, 0.6),
                2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .discord-description {
            font-size: 1.05rem;
            line-height: 1.6;
            color: rgba(232, 232, 232, 0.85);
            margin: 0;
            font-weight: 500;
        }

        .discord-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #5865F2, #7289DA);
            border: 2px solid #7289DA;
            color: white;
            padding: 16px 35px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 
                0 5px 20px rgba(88, 101, 242, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            z-index: 1;
        }

        .discord-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .discord-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .discord-btn:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 8px 30px rgba(88, 101, 242, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border-color: #949cf7;
        }

        .discord-btn:active {
            transform: translateY(0);
        }

        .discord-btn span {
            position: relative;
            z-index: 1;
        }

        .discord-icon {
            width: 26px;
            height: 26px;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        /* Server IP section */
        .server-section {
            text-align: center;
            position: relative;
        }

        .server-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 0 0 15px rgba(77, 217, 232, 0.6);
        }

        .server-ip-box {
            background: linear-gradient(135deg, rgba(77, 217, 232, 0.15), rgba(147, 112, 219, 0.15));
            border: 2px solid var(--cyan-dark);
            border-radius: 12px;
            padding: 0;
            margin: 0 auto;
            max-width: 600px;
            box-shadow: 
                0 10px 40px rgba(77, 217, 232, 0.2),
                inset 0 0 30px rgba(77, 217, 232, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .server-ip-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(77, 217, 232, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .server-ip {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: 2px;
            text-shadow: 
                0 0 20px rgba(77, 217, 232, 1),
                0 0 40px rgba(77, 217, 232, 0.6),
                2px 2px 6px rgba(0, 0, 0, 0.8);
            position: relative;
            flex: 1;
            padding: 20px 25px;
            text-align: left;
        }

        .copy-btn {
            font-family: 'Rajdhani', sans-serif;
            background: linear-gradient(135deg, #2a8a95, #4dd9e8);
            border: none;
            border-left: 2px solid rgba(77, 217, 232, 0.5);
            color: white;
            padding: 20px 35px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            white-space: nowrap;
            margin-right: 8px;
        }

        .copy-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .copy-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .copy-btn:hover {
            background: linear-gradient(135deg, #4dd9e8, #7ee8f5);
            box-shadow: 
                0 0 25px rgba(77, 217, 232, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .copy-btn:active {
            transform: scale(0.98);
        }

        .copy-btn span {
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .copy-feedback {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: #1a1f2e;
            padding: 25px 50px;
            border-radius: 12px;
            border: 3px solid var(--gold-light);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            box-shadow: 
                0 15px 50px rgba(212, 165, 116, 0.8),
                inset 0 2px 0 rgba(255, 255, 255, 0.5);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .copy-feedback.show {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .copy-feedback {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: #1a1f2e;
            padding: 25px 50px;
            border-radius: 12px;
            border: 3px solid var(--gold-light);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            box-shadow: 
                0 15px 50px rgba(212, 165, 116, 0.8),
                inset 0 2px 0 rgba(255, 255, 255, 0.5);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .copy-feedback.show {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        /* Development notice */
        .dev-notice {
            margin-top: 35px;
            background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(139, 111, 71, 0.15));
            border: 2px solid rgba(212, 165, 116, 0.4);
            border-left: 4px solid var(--bronze);
            border-radius: 8px;
            padding: 20px 25px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            box-shadow: 
                0 5px 20px rgba(205, 127, 50, 0.2),
                inset 0 0 20px rgba(212, 165, 116, 0.05);
            position: relative;
            overflow: hidden;
        }

        .dev-notice::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
            animation: noticeShine 4s infinite;
        }

        @keyframes noticeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .notice-icon {
            font-size: 1.5rem;
            color: var(--bronze);
            text-shadow: 0 0 10px rgba(205, 127, 50, 0.6);
            flex-shrink: 0;
            position: relative;
            animation: iconPulse 2s ease-in-out infinite;
        }

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

        .notice-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(232, 232, 232, 0.85);
            position: relative;
        }

        .notice-text strong {
            color: var(--gold-light);
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .main-navigation {
                position: relative;
                justify-content: space-between; /* Logo on left, hamburger on right */
            }

            .nav-logo {
                display: block; /* Keep logo visible on mobile */
            }

            .nav-menu-container {
                justify-content: flex-end; /* Align menu to right */
            }

            .nav-logo img {
                max-width: 120px;
            }

            /* Show hamburger button on desktop in the nav-menu-container */
            .nav-menu-container .mobile-menu-toggle {
                display: none;
            }

            /* Show hamburger outside nav container on desktop */
            .main-navigation > .mobile-menu-toggle {
                display: flex;
                position: relative;
                margin-left: auto; /* Push to right side */
            }

            .nav-menu-overlay {
                display: block;
            }

            .nav-menu-container {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                max-width: 85vw;
                height: 100vh;
                z-index: 1000;
                transition: right 0.4s ease;
                overflow-x: hidden;
                overflow-y: auto;
            }

            .nav-menu-container.active {
                right: 0;
            }

            /* Position close button in top-right of flyout */
            .nav-menu-container.active .mobile-menu-toggle {
                display: flex;
                position: fixed;
                top: 20px;
                right: 20px;
            }

            /* Keep ornate corners for mobile menu */
            .nav-corner {
                width: 40px;
                height: 40px;
            }

            .nav-corner::before {
                width: 15px;
                height: 3px;
            }

            .nav-corner::after {
                width: 3px;
                height: 15px;
            }

            .nav-menu {
                flex-direction: column;
                gap: 0;
                padding: 170px 0 20px 0;
                align-items: stretch;
                width: 100%;
                overflow-x: hidden;
            }

            .menu-item {
                width: 100%;
                border-bottom: 1px solid rgba(212, 165, 116, 0.1);
                overflow: hidden;
                padding: 20px 0;
            }

            .menu-item:last-child {
                border-bottom: none;
            }

            .menu-item > a {
                padding: 15px 25px;
                font-size: 1.1rem;
            }

            .menu-item > a::before {
                display: none;
            }

            /* Mobile dropdowns */
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                border: none;
                border-top: 1px solid rgba(212, 165, 116, 0.2);
                border-radius: 0;
                background: rgba(13, 17, 23, 0.5);
                max-height: 0;
                overflow: hidden;
                transition: none;
                padding: 0;
                box-shadow: none;
            }

            .has-dropdown.active .dropdown-menu {
                max-height: 300px;
                padding: 8px 0;
                transition: max-height 0.3s ease, padding 0.3s ease;
            }

            .has-dropdown > a::after {
                float: right;
                transition: transform 0.3s ease;
                margin-right: 20px;
            }

            .has-dropdown.active > a::after {
                transform: rotate(180deg);
            }

            .dropdown-menu a {
 
                font-size: 1rem;
            }

            .dropdown-menu a:hover {
                padding-left: 50px;
            }

            .status-value {
                font-size: 0.9rem;
            }

        }

        @media (max-width: 768px) {
            /* Position close button in top-right of flyout */
            .nav-menu-container.active .mobile-menu-toggle {
                display: flex;
                position: fixed;
                top: 20px;
                right: 20px;
            }

            .ornate-frame {
                padding: 50px 30px 40px;
            }

            .corner {
                width: 60px;
                height: 60px;
            }

            .content-section h2 {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }

            .content-section p {
                font-size: 1rem;
            }

            .discord-section {
                flex-direction: column;
                gap: 20px;
                padding: 25px;
            }

            .discord-content {
                text-align: center;
            }

            .discord-section h3 {
                font-size: 1.3rem;
            }

            .discord-description {
                font-size: 0.95rem;
            }

            .discord-btn {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .server-ip {
                font-size: 1.4rem;
            }

            .server-ip-box {
                flex-direction: column;
            }

            .server-ip {
                text-align: center;
                padding: 18px 20px;
            }

            .status-value {
                font-size: 0.7rem;
            }

            .copy-btn {
                width: 100%;
                border-radius: 0 0 10px 10px;
                border-left: none;
                border-top: 2px solid rgba(77, 217, 232, 0.5);
                padding: 15px 30px;
                font-size: 1rem;
            }

            .players-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 12px;
            }

            .player-count-box {
                padding: 18px 25px;
            }

            .count-icon {
                font-size: 2rem;
            }

            .count-number {
                font-size: 2rem;
            }

            .logo-container img {
                max-width: 250px;
            }
        }

        @media (max-width: 480px) {
            .ornate-frame {
                padding: 45px 20px 35px;
            }

            .corner {
                width: 50px;
                height: 50px;
                border-width: 3px;
            }

            .server-ip {
                font-size: 1.2rem;
                word-break: break-all;
            }

            .server-ip-box {
                flex-direction: column;
            }

            .server-ip {
                padding: 15px 18px;
            }

            .copy-btn {
                width: 100%;
                border-radius: 0 0 10px 10px;
                border-left: none;
                border-top: 2px solid rgba(77, 217, 232, 0.5);
                padding: 12px 25px;
                font-size: 0.9rem;
            }

            .content-section h2 {
                font-size: 1.2rem;
                letter-spacing: 1px;
            }

            .discord-section {
                padding: 20px;
                gap: 18px;
            }

            .discord-section h3 {
                font-size: 1.1rem;
            }

            .discord-description {
                font-size: 0.9rem;
            }

            .discord-btn {
                padding: 12px 28px;
                font-size: 0.9rem;
                gap: 10px;
            }

            .discord-icon {
                width: 22px;
                height: 22px;
            }

            .copy-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }

            .players-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 10px;
            }

            .player-card {
                padding: 12px;
            }

            .player-avatar {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .player-name {
                font-size: 0.85rem;
            }

            .player-count-box {
                padding: 15px 20px;
                gap: 15px;
            }

            .count-icon {
                font-size: 1.8rem;
            }

            .count-number {
                font-size: 1.8rem;
            }

            .count-label {
                font-size: 0.9rem;
            }

            .dev-notice {
                padding: 15px 18px;
                gap: 12px;
            }

            .notice-text {
                font-size: 0.85rem;
            }

            .notice-icon {
                font-size: 1.3rem;
            }
        }

        /* Copyright footer */
        .copyright {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            padding: 20px 20px;
            font-size: 0.9rem;
            color: rgba(212, 165, 116, 0.6);
            background: linear-gradient(to top, rgba(13, 17, 23, 0.9), transparent);
            z-index: 5;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.6;
        }

        .copyright::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
        }

