body {
            box-sizing: border-box;
        }

        .halloween-bg {
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 25%, #4a2c5a 50%, #6b3e7a 75%, #8b4f9b 100%);
        }

        .corn-gradient {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-hover:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(255, 107, 53, 0.3);
        }

        .nav-link {
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff6b35, #ffcc02);
            transition: width 0.3s ease;
        }

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

        .section-hidden {
            display: none;
        }

        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pulse-glow {
            animation: pulseGlow 2.5s infinite;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
            }

            50% {
                box-shadow: 0 0 40px rgba(255, 107, 53, 0.7);
            }
        }

        .minecraft-font {
            font-family: 'Courier New', monospace;
            /* text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8); */
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }

        .leaderboard-item {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 204, 2, 0.1));
            border-left: 5px solid;
            transition: all 0.3s ease;
        }

        .leaderboard-item:hover {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 204, 2, 0.2));
            transform: translateX(8px);
        }

        .rank-1 {
            border-left-color: #ffd700;
        }

        .rank-2 {
            border-left-color: #c0c0c0;
        }

        .rank-3 {
            border-left-color: #cd7f32;
        }

        .rank-other {
            border-left-color: #ff6b35;
        }

        .news-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
        }

        .news-card:hover {
            border-color: rgba(255, 107, 53, 0.4);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 204, 2, 0.05));
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .server-status {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 700;
        }

        .status-online {
            background: rgba(255, 107, 53, 0.2);
            color: #ff6b35;
            border: 2px solid rgba(255, 107, 53, 0.4);
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ff6b35;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 650px;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(45deg, #1a0b2e, #2d1b3d);
            border: 2px solid rgba(255, 107, 53, 0.3);
        }

        .map-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #d1d5db;
            text-align: center;
        }

        .floating-icon {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .corn-text {
            background: linear-gradient(135deg, #ff6b35, #ffcc02);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .halloween-card {
            background: linear-gradient(135deg, rgba(139, 79, 155, 0.1), rgba(45, 27, 61, 0.2));
            border: 1px solid rgba(139, 79, 155, 0.3);
        }

        .achievement-badge {
            background: linear-gradient(135deg, #ff6b35, #ffcc02);
            color: #1a0b2e;
            font-weight: bold;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
        }