@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
:root { --bg:#0b0f1a; --card:#111729; --text:#e6e9f2; --muted:#a3acc2; --primary:#5b8cff; --border:#1a2440; }
* { box-sizing: border-box; }
body { margin:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif; background: radial-gradient(1920px 1px at 20% -10%, #0f1630 0%, #0b0f1a 60%); color: var(--text); }
.container { max-width: 980px; margin: 0 auto; padding: 20px; }
header.container { display:flex; align-items:center; justify-content:space-between; }
.header { position: sticky; top: 0; backdrop-filter: blur(6px); background: rgba(11,15,26,.8); z-index: 10; border-bottom: 1px solid #1a2440; }
.header .nav { display:flex; align-items:center; gap:12px; }
.header .nav a[data-active="1"] { color: var(--primary); }
.hamburger { display:none; cursor:pointer; margin-left:auto; }
#nav-toggle { display:none; }
.nav-user { opacity:.9; margin-left:12px; }
.language-selector { 
    display: flex; 
    gap: 4px; 
    margin-left: 12px; 
    align-items: center;
}
.lang-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 32px; 
    height: 32px; 
    border-radius: 8px; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border); 
    color: var(--text); 
    text-decoration: none; 
    font-size: 16px; 
    transition: all 0.2s ease;
    opacity: 0.7;
}
.lang-btn:hover { 
    opacity: 1; 
    background: rgba(255,255,255,0.1); 
    border-color: #2a3660;
    transform: translateY(-1px);
}
.lang-btn.active { 
    opacity: 1; 
    background: var(--primary); 
    border-color: var(--primary); 
    color: #0b0f1a;
    box-shadow: 0 4px 12px rgba(91,140,255,0.3);
}
.lang-btn.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(91,140,255,0.4);
}
@media (max-width: 720px){
  .hamburger { display:block; }
  .hamburger span, .hamburger span:before, .hamburger span:after { display:block; background: var(--text); height:2px; width:22px; position:relative; }
  .hamburger span:before, .hamburger span:after { content:''; position:absolute; left:0; }
  .hamburger span:before { top:-6px; }
  .hamburger span:after { top:6px; }
  .header .nav { display:none; flex-direction:column; align-items:flex-start; padding:10px 0; }
  #nav-toggle:checked ~ .nav { display:flex; }
  .language-selector { margin-left: 0; margin-top: 8px; }
  .lang-btn { width: 28px; height: 28px; font-size: 14px; }
}
.brand { font-weight: 700; font-size: 20px; }
nav a { color: var(--text); text-decoration:none; margin-left: 12px; opacity:.9; }
nav a:hover{ opacity:1; color: var(--primary); }

/* Botão CRIE SUA LOGO - Brilhante com cores aleatórias */
.nav-create-logo {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: logoGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.nav-create-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.nav-create-logo:hover {
    animation: logoGlow 1s ease-in-out infinite;
    transform: scale(1.05);
}

@keyframes logoGlow {
    0% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5));
    }
    25% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.7));
    }
    50% { 
        background-position: 200% 50%;
        filter: drop-shadow(0 0 15px rgba(69, 183, 209, 0.8));
    }
    75% { 
        background-position: 300% 50%;
        filter: drop-shadow(0 0 10px rgba(150, 206, 180, 0.7));
    }
    100% { 
        background-position: 400% 50%;
        filter: drop-shadow(0 0 5px rgba(254, 202, 87, 0.5));
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Estilos específicos para a página de prompt */
.prompt-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.prompt-header .main-title {
    font-family: 'Orbitron', 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.4),
        3px 3px 6px rgba(0, 0, 0, 0.8);
    position: relative;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #0066CC, #FFD700);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.prompt-header .header-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.vip { margin: 20px 0; }
.vip-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.vip-item { display:flex; align-items:center; justify-content:center; min-height:72px; border:1px solid var(--border); padding:6px; border-radius:10px; background: #0e1526; box-shadow: 0 1px 0 rgba(0,0,0,.2), 0 8px 24px rgba(0,0,0,.25); }
.list { display:flex; flex-direction:column; gap: 12px; }
.card { background: linear-gradient(180deg, rgba(17,23,41,.9), rgba(12,18,32,.9)); border:1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 12px 30px rgba(0,0,0,.35); }
.card:hover { border-color: #2a3660; }
.rank { font-weight:700; font-size: 18px; color: var(--primary); }
.info .title { font-weight:600; font-size: 18px; margin-bottom: 6px; }
.meta { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.btn { display:inline-block; background: var(--primary); color:#0b0f1a; font-weight:600; text-decoration:none; padding:10px 14px; border-radius:10px; border:1px solid rgba(255,255,255,.1); cursor:pointer; box-shadow: 0 8px 20px rgba(91,140,255,.25); transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(91,140,255,.35); }
.auth form { display:flex; flex-direction:column; gap:12px; }
label { display:flex; flex-direction:column; gap:6px; font-size:14px; }
input[type="text"], input[type="email"], input[type="password"], input[type="url"] { background:#0e1526; border:1px solid var(--border); border-radius:10px; padding:12px; color:#fff; outline:none; }
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="url"]:focus { border-color:#2a3660; box-shadow: 0 0 0 3px rgba(91,140,255,.15); }
.error { background:#3a1020; color:#ff89a0; border:1px solid #5a1830; padding:10px; border-radius:8px; margin-bottom:10px; }
.success { background:#0f2b19; color:#78e39a; border:1px solid #1c5a35; padding:10px; border-radius:8px; margin-bottom:10px; }
table { width:100%; border-collapse: collapse; }
th, td { text-align:left; padding:8px; border-bottom:1px solid #1a2440; }

/* Home list cards layout with optional banner */
.server-card { display:flex; gap:14px; align-items:center; }
.server-banner { width: 468px; height: 60px; border-radius:8px; overflow:hidden; border:1px solid var(--border); background:#0e1526; display:flex; align-items:center; justify-content:center; }
.server-banner img { width:100%; height:100%; object-fit:cover; }

/* VIP Card Styles */
.vip-card { 
    background: linear-gradient(180deg, rgba(255,215,0,.1), rgba(17,23,41,.9)); 
    border: 2px solid #ffd700; 
    box-shadow: 0 1px 0 rgba(255,215,0,.1) inset, 0 12px 30px rgba(255,215,0,.15); 
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vip-card:hover { 
    border-color: #ffed4e; 
    box-shadow: 0 1px 0 rgba(255,215,0,.2) inset, 0 12px 30px rgba(255,215,0,.25); 
}

/* VIP Header */
.vip-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vip-rank { 
    background: linear-gradient(45deg, #ffd700, #ffed4e); 
    color: #0b0f1a; 
    padding: 4px 8px; 
    border-radius: 6px; 
    font-size: 12px; 
    font-weight: 700; 
    text-shadow: none; 
    flex-shrink: 0;
}

.vip-title { 
    color: #ffd700; 
    font-weight: 700; 
    font-size: 18px;
}

/* VIP Banner Container */
.vip-banner-container {
    display: flex;
    justify-content: center;
    width: 57%;
}

/* VIP Banner específico - tamanho 468x60 */
.vip-card .server-banner { 
    width: 468px; 
    height: 60px; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid #ffd700; 
    background: #0e1526; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.vip-card .server-banner img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* VIP Footer */
.vip-footer {
    display: flex
;
    flex-direction: column;
    /* gap: 8px; */
    margin: -116px 0px 0 59%;
}

.vip-card .meta { 
    color: #ffed4e; 
    opacity: 0.8; 
    font-size: 13px;
}

.vip-card .btn { 
    background: linear-gradient(45deg, #ffd700, #ffed4e); 
    color: #0b0f1a; 
    box-shadow: 0 8px 20px rgba(255,215,0,.3); 
    align-self: flex-start;
}
.vip-card .btn:hover { 
    box-shadow: 0 10px 24px rgba(255,215,0,.4); 
}

/* Botões de Ação Secundária */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    margin-top: 8px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #0b0f1a;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(91,140,255,.25);
}

/* Botões de Ação Terciária (mais sutil) */
.btn-tertiary {
    display: inline-block;
    background: rgba(91,140,255,.1);
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(91,140,255,.2);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}

.btn-tertiary:hover {
    background: rgba(91,140,255,.2);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91,140,255,.15);
}

/* Container para centralizar botões */
.auth-actions {
    text-align: center;
    margin-top: 16px;
}

.auth-actions p {
    margin: 0;
}

