/* Estilos */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

        :root {
            --gold: #d4af37;
            --gold-light: #fde047;
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.1);
            --discord: #5865F2;
            --discord-glow: rgba(88, 101, 242, 0.5);
        }

        body {
            background-color: #050505;
            color: #f8fafc;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.05) 0%, transparent 40%);
        }

        h1, h2, h3, .font-fantasy {
            font-family: 'Cinzel', serif;
        }

.hero-bg {
    background: url('../images/nov-fon.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* фонът остава фиксиран при скрол */
}

        .glass-panel {
            background: var(--glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
        }

        .server-card {
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }

        /* Camada de imagem de fundo do card Essence */
        .elysium-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://mw-essence.com/template/site/mwessence/assets/images/bg/section_header_bg.jpg');
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
            opacity: 0.15;
            z-index: 0;
            pointer-events: none;
        }

        /* Camada de imagem de fundo do card Interlude */
        .hellbound-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://i.pinimg.com/originals/45/74/40/4574409f60eba6e2645fa58fa70fffbe.jpg');
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
            opacity: 0.15;
            z-index: 0;
            pointer-events: none;
        }

        .server-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
            z-index: 1;
        }

        .server-card:hover::before {
            transform: scale(1);
        }

        .server-card:hover {
            transform: scale(1.02);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
        }

        .btn-action {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .btn-action:hover {
            background: var(--gold);
            color: black;
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .stat-badge {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 2;
        }

        .pulse-online {
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        .gold-brand-effect {
            background: linear-gradient(to right, #d4af37, #fde047, #fde047, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            display: inline-block;
            filter: drop-shadow(0 0 8px rgba(253, 224, 71, 0.4));
        }

        .logo-container {
            text-shadow: 0 10px 30px rgba(0,0,0,0.9);
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
        }

        header {
            position: relative;
            width: 100%;
            z-index: 10;
            background: transparent;
        }

        /* Estilo para as imagens redondas nos cards */
        .avatar-circle {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        /* Botão Discord Ultra Chamativo */
        .btn-discord-premium {
            background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 0 0 0 var(--discord-glow);
            animation: button-pulse 2.5s infinite;
        }

        .btn-discord-premium:hover {
            transform: translateY(-4px) scale(1.02);
            filter: brightness(1.2);
            box-shadow: 0 15px 30px rgba(88, 101, 242, 0.4);
        }

        @keyframes button-pulse {
            0% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.6); }
            70% { box-shadow: 0 0 0 15px rgba(88, 101, 242, 0); }
            100% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0); }
        }
		
	/* COUNTDOWN SMALL STYLE */

.count-box {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.count-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(to bottom, #fde047, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.count-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
}
.vote-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.vote-card:hover {
    border-color: rgba(255,215,0,0.6);
    box-shadow: 0 0 25px rgba(255,215,0,0.4);
}
.vote-banner{
  position: relative;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.vote-banner:hover{
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.35);
  box-shadow: 0 10px 25px rgba(255,215,0,0.15);
}

.vote-banner h3{
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 6px;
}

.vote-banner span{
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1px;
}

.vote-banner::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, transparent, gold, transparent);
  opacity:0.4;
