        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            min-height: 100vh;
            background: url('https://external-preview.redd.it/ESSabRPUaDj-4sTgD4cwDdihFIs1L0fCuB-ZqPCYcWo.jpg?auto=webp&s=9877e45259298aedb2271b9be97ff99e942b28d7') no-repeat center center fixed;
            background-size: cover;
            overflow-x: hidden;
            position: relative;
            color: white;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
            backdrop-filter: blur(8px);
        }

        .lava-particle {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 2;
            animation: riseLava 8s ease-in infinite;
            opacity: 0;
        }

        @keyframes riseLava {
            0% {
                transform: translateY(0) translateX(0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-120vh) translateX(var(--drift)) scale(1.5);
                opacity: 0;
            }
        }

        .particle {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 2;
            animation: floatParticle 6s ease-in-out infinite;
        }

        .particle.small {
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, #FF5722, #F44336);
            box-shadow: 0 0 10px #FF5722, 0 0 20px #FF5722;
        }

        .particle.medium {
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #FF9800, #FF5722);
            box-shadow: 0 0 15px #FF9800, 0 0 25px #FF5722;
        }

        .particle.large {
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, #FFD700, #FF9800);
            box-shadow: 0 0 20px #FFD700, 0 0 30px #FF9800;
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg) scale(1);
                opacity: 0.6;
            }
            25% {
                transform: translateY(-25px) translateX(15px) rotate(90deg) scale(1.2);
                opacity: 1;
            }
            50% {
                transform: translateY(-50px) translateX(-10px) rotate(180deg) scale(0.8);
                opacity: 0.8;
            }
            75% {
                transform: translateY(-25px) translateX(-20px) rotate(270deg) scale(1.1);
                opacity: 1;
            }
        }

        .header {
            position: fixed;
            top: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            gap: 5px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            padding: 8px;
            border-radius: 30px;
            border: 1px solid rgba(255, 87, 34, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 87, 34, 0.2);
        }

        .nav-item {
            background: transparent;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none !important;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(255, 152, 0, 0.2));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .nav-item:hover {
            color: #FF5722;
            transform: translateY(-3px);
            text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
        }

        .nav-item:hover::before {
            transform: scaleX(1);
        }

        .nav-item.active {
            color: #FF5722;
            background: rgba(255, 87, 34, 0.1);
        }

        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30%;
            height: 2px;
            background: linear-gradient(90deg, #FF5722, #FF9800);
            border-radius: 2px;
            box-shadow: 0 0 10px #FF5722;
        }

        .glow-orb {
            position: fixed;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.5), rgba(255, 152, 0, 0.3), transparent 70%);
            animation: glowPulse 8s ease-in-out infinite;
            filter: blur(40px);
            z-index: 1;
            pointer-events: none;
        }

        .glow-orb:nth-child(1) {
            top: 10%;
            left: 5%;
            width: 300px;
            height: 300px;
            animation-delay: 0s;
        }

        .glow-orb:nth-child(2) {
            bottom: 15%;
            right: 5%;
            width: 400px;
            height: 400px;
            animation-delay: 2s;
        }

        .glow-orb:nth-child(3) {
            top: 50%;
            left: 50%;
            width: 250px;
            height: 250px;
            animation-delay: 4s;
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.2;
                transform: scale(0.8) rotate(0deg);
            }
            33% {
                opacity: 0.5;
                transform: scale(1.2) rotate(120deg);
            }
            66% {
                opacity: 0.3;
                transform: scale(1) rotate(240deg);
            }
        }

        .main-container {
            max-width: 1200px;
            margin: 120px auto 50px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .rules-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
            position: relative;
        }

        .rules-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.3), transparent 70%);
            filter: blur(30px);
            z-index: -1;
        }

        .rules-header h1 {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #FF5722, #FF9800, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 87, 34, 0.5);
            margin-bottom: 20px;
            font-weight: bold;
            position: relative;
        }

        .rules-header h1 i {
            -webkit-text-fill-color: #FF5722;
            filter: drop-shadow(0 0 10px #FF5722);
        }

        .rules-header p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .title-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .title-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FF5722, transparent);
            box-shadow: 0 0 10px #FF5722;
        }

        .title-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 87, 34, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 87, 34, 0.4);
            box-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
        }

        .title-icon i {
            color: #FF5722;
            font-size: 18px;
        }

        .rules-container {
            display: grid;
            gap: 30px;
            animation: fadeInUp 0.8s ease;
        }

        .rule-card {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 87, 34, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 87, 34, 0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .rule-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #FF5722, #FF9800, #FFD700);
            border-radius: 20px 0 0 20px;
            box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
        }

        .rule-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.05), transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .rule-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(255, 87, 34, 0.6);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 87, 34, 0.3);
        }

        .rule-card:hover::after {
            opacity: 1;
        }

        .rule-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .rule-number {
            min-width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(255, 152, 0, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #FF5722;
            border: 3px solid rgba(255, 87, 34, 0.5);
            box-shadow: 0 5px 20px rgba(255, 87, 34, 0.3), inset 0 0 20px rgba(255, 87, 34, 0.1);
            transition: all 0.3s ease;
        }

        .rule-card:hover .rule-number {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 87, 34, 0.5), inset 0 0 30px rgba(255, 87, 34, 0.2);
        }

        .rule-title {
            font-size: 1.4rem;
            background: linear-gradient(135deg, #FF5722, #FF9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            flex: 1;
            text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
        }

        .rule-description {
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            font-size: 1.05rem;
            padding-left: 80px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .rule-note {
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 87, 34, 0.1));
            border-left: 4px solid #FF9800;
            padding: 15px 20px;
            margin-top: 15px;
            border-radius: 8px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .rule-note i {
            color: #FF9800;
            margin-right: 8px;
            filter: drop-shadow(0 0 5px #FF9800);
        }

        .rules-footer {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 87, 34, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 87, 34, 0.1);
            position: relative;
            overflow: hidden;
        }

        .rules-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 87, 34, 0.1), transparent 70%);
            z-index: 0;
        }

        .rules-footer h3 {
            background: linear-gradient(135deg, #FF5722, #FF9800, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .rules-footer h3 i {
            -webkit-text-fill-color: #FF5722;
            filter: drop-shadow(0 0 10px #FF5722);
        }

        .rules-footer p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.15rem;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .action-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 35px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .action-btn {
            background: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(255, 87, 34, 0.2));
            border: 2px solid rgba(255, 87, 34, 0.5);
            padding: 15px 30px;
            border-radius: 30px;
            color: #FF5722;
            text-decoration: none !important;
            font-weight: bold;
            font-size: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 20px rgba(255, 87, 34, 0.2);
            position: relative;
            overflow: hidden;
        }

        .action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .action-btn:hover::before {
            left: 100%;
        }

        .action-btn:hover {
            background: linear-gradient(135deg, rgba(255, 87, 34, 0.5), rgba(255, 87, 34, 0.3));
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
            border-color: rgba(255, 87, 34, 0.8);
        }

        .action-btn i {
            font-size: 18px;
            filter: drop-shadow(0 0 5px #FF5722);
        }

        .action-btn.discord {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.2));
            border-color: rgba(88, 101, 242, 0.5);
            color: #5865F2;
        }

        .action-btn.discord:hover {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.5), rgba(88, 101, 242, 0.3));
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
            border-color: rgba(88, 101, 242, 0.8);
        }

        .action-btn.discord i {
            filter: drop-shadow(0 0 5px #5865F2);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .header {
                top: 10px;
            }

            .nav-container {
                flex-wrap: wrap;
                padding: 6px;
                gap: 3px;
            }

            .nav-item {
                padding: 8px 12px;
                font-size: 12px;
            }

            .rules-header h1 {
                font-size: 2.5rem;
            }

            .rules-header p {
                font-size: 1rem;
            }

            .rule-card {
                padding: 20px;
            }

            .rule-number {
                min-width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .rule-title {
                font-size: 1.1rem;
            }

            .rule-description {
                padding-left: 0;
                margin-top: 15px;
                font-size: 0.95rem;
            }

            .action-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .action-btn {
                width: 100%;
                justify-content: center;
            }
        }