        body {
            font-family: 'Oxanium', sans-serif;
            scroll-behavior: smooth;
            background-color: #0a0a0a;
            color: #e0e0e0;
            overflow-x: hidden;
        }
        
        .minecraft-bg {
            background-image: url('https://images4.alphacoders.com/133/thumb-350-1333795.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .skyblock-bg {
            background-image: url('https://images.unsplash.com/photo-1627855437693-dcc7b0c4ba5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .survival-bg {
            background-image: url('https://images.unsplash.com/photo-1627855437693-dcc7b0c4ba5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .pvp-bg {
            background-image: url('https://images.unsplash.com/photo-1627855437693-dcc7b0c4ba5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .parkour-bg {
            background-image: url('https://images.unsplash.com/photo-1627855437693-dcc7b0c4ba5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .section {
            min-height: 100vh;
            padding: 6rem 2rem;
            position: relative;
        }
        
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.95) 100%);
            z-index: -1;
        }
        
        .glow-text {
            text-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
        }
        
        .glow-box {
            box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
            transition: all 0.3s ease;
        }
        
        .glow-box:hover {
            box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #4ade80;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
        }
        
        .server-card {
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            transition: all 0.3s ease;
        }
        
        .server-card:hover {
            transform: translateY(-5px);
            border-color: rgba(74, 222, 128, 0.5);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #4ade80, #22c55e);
            transition: width 0.5s ease;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
            100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .rotate {
            animation: rotate 10s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #4ade80;
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }
        
        .online-player {
            display: inline-block;
            margin: 0 5px;
            padding: 2px 8px;
            background: rgba(74, 222, 128, 0.2);
            border-radius: 20px;
            font-size: 0.8rem;
            animation: fadeIn 0.5s ease-in;
        }
        
        .tooltip {
            position: relative;
            display: inline-block;
        }
        
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: #111;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.8rem;
            border: 1px solid #4ade80;
        }
        
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 5rem 1rem;
            }
            
            .server-card {
                padding: 1.5rem;
            }
            
            .text-6xl {
                font-size: 3rem;
            }
            
            .text-4xl {
                font-size: 2rem;
            }
        }
        
        .announcement-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(17, 17, 17, 0.95);
            border: 1px solid #333;
            border-radius: 1rem;
            padding: 2rem;
            z-index: 1000;
            max-width: 90%;
            width: 500px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            animation: slideIn 0.3s ease-out;
        }

        .announcement-image {
            max-width: 100%;
            border-radius: 0.5rem;
            margin: 1rem 0;
        }

        @keyframes slideIn {
            from {
                transform: translate(-50%, -60%);
                opacity: 0;
            }
            to {
                transform: translate(-50%, -50%);
                opacity: 1;
            }
        }

        .staff-card {
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(34, 34, 34, 0.9) 100%);
            border: 1px solid #333;
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .staff-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: #4ade80;
        }

        .staff-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #4ade80;
        }

        .gamemode-card {
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(34, 34, 34, 0.9) 100%);
            border: 1px solid #333;
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .gamemode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: #4ade80;
        }
        
        /* New IP Box Styles */
        .ip-box-container {
            position: relative;
            display: inline-flex;
            align-items: center;
            background: rgba(20, 20, 20, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 8px 20px;
            box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
            border: 1px solid rgba(74, 222, 128, 0.3);
            transition: all 0.3s ease;
            animation: pulse-glow 3s infinite;
        }
        
        .ip-box-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
            border-color: rgba(74, 222, 128, 0.6);
            animation: none;
        }
        
        .ip-icon {
            font-size: 1.5rem;
            color: #4ade80;
            margin-right: 15px;
            animation: bounce 2s infinite;
        }
        
        .ip-input {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            min-width: 180px;
            outline: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ip-input:hover {
            color: #4ade80;
        }
        
        .copy-btn {
            background: rgba(74, 222, 128, 0.2);
            border: none;
            color: #4ade80;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .copy-btn:hover {
            background: rgba(74, 222, 128, 0.4);
            transform: scale(1.1);
        }
        
        .copy-tooltip {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 20, 20, 0.9);
            color: #4ade80;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .copy-tooltip.show {
            opacity: 1;
            bottom: -45px;
        }
        
        @keyframes pulse-glow {
            0% { box-shadow: 0 0 10px rgba(74, 222, 128, 0.2); }
            50% { box-shadow: 0 0 20px rgba(74, 222, 128, 0.4); }
            100% { box-shadow: 0 0 10px rgba(74, 222, 128, 0.2); }
        }
        
        .section-heading {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }
        
        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #4ade80, transparent);
        }