body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0c;
            color: #e2e8f0;
            overflow-x: hidden;
        }
        h1, h2, h3, .font-cinzel {
            font-family: 'Cinzel', serif;
        }
        .hero-bg {
            background: linear-gradient(rgba(10, 10, 12, 0.7), rgba(10, 10, 12, 0.95)), 
                        url('https://mmorpgbr.com.br/wp-content/uploads/2021/10/180919-L2-Classic-Heroes.jpeg');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .bg-themed-1::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('https://images.unsplash.com/photo-1599423300746-b62533397364?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
            pointer-events: none;
        }

        .bg-themed-2::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('https://images.unsplash.com/photo-1533106497176-45ae19e68ba2?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0.03;
            z-index: 0;
            pointer-events: none;
        }

        .bg-themed-3::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('https://images.unsplash.com/photo-1614850523296-d8c1af93d400?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0.04;
            z-index: 0;
            pointer-events: none;
        }

        .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .gold-gradient {
            background: linear-gradient(90deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .btn-gold {
            background: linear-gradient(90deg, #b8860b 0%, #ffd700 100%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
            filter: brightness(1.1);
        }
        
        .section-divider {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.5), transparent);
            margin: 0;
            z-index: 40;
        }
        
        .section-divider::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #0a0a0c;
            border: 1px solid #b8860b;
            transform: rotate(45deg);
            box-shadow: 0 0 10px rgba(184, 134, 11, 0.4);
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }
        .pulse-anim {
            animation: pulse 2s infinite;
        }
        
        .footer-glow {
            border-top: 1px solid rgba(184, 134, 11, 0.15);
            background: radial-gradient(circle at top, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
        }

        .discord-section {
            background: linear-gradient(rgba(88, 101, 242, 0.08), rgba(0, 0, 0, 0)), url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
        }