:root {
    --primary-blue: #002b5c;
    --accent-blue: #00d4ff;
    --highlight-red: #ff4d4d;
    --light-bg: #f4f7f9;
    --white: #ffffff;
    --text-dark: #1a2a3a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    background-color: var(--light-bg); 
    color: var(--text-dark); 
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,43,92,0.05) 0%, rgba(255,255,255,1) 100%);
    z-index: -1;
}

.container { max-width: 950px; margin: 0 auto; padding: 0 20px; }

/* Header */
.hero { padding: 60px 0; text-align: center; color: var(--primary-blue); }
.logo-badge { 
    display: inline-block; background: var(--primary-blue); color: #fff; 
    padding: 5px 15px; border-radius: 50px; font-size: 12px; font-weight: bold; margin-bottom: 10px;
}
.hero h1 { font-size: 3.5rem; font-weight: 900; letter-spacing: -2px; }

/* Headers das Trilhas */
.track-headers {
    display: grid; grid-template-columns: 100px 1fr 1fr; gap: 15px;
    margin-bottom: 15px; text-align: center; font-weight: 800; font-size: 13px;
}
.header-free { color: #888; grid-column: 2; }
.header-premium { color: var(--primary-blue); grid-column: 3; }

/* Battlepass Rows */
.battlepass-row {
    display: flex; align-items: center; background: var(--white);
    margin-bottom: 10px; border-radius: 12px; padding: 12px;
    box-shadow: 0 4px 12px rgba(0,43,92,0.06); border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.level-column { 
    min-width: 80px; text-align: center; 
    border-right: 2px solid var(--light-bg); margin-right: 20px;
    display: flex; flex-direction: column; justify-content: center;
}
.level-number { font-size: 24px; font-weight: 900; color: var(--primary-blue); }

.tracks-container { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; width: 100%; }

/* Destaque Intenso (Níveis de Marco) */
.highlight-row {
    border: 2px solid var(--highlight-red) !important;
    background: linear-gradient(90deg, #fff 0%, #fff5f5 100%) !important;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.25);
    position: relative;
}

.highlight-row::before {
    content: "SPECIAL"; position: absolute; left: 0; top: 0;
    background: var(--highlight-red); color: white; font-size: 8px;
    padding: 2px 5px; font-weight: bold; border-radius: 0 0 5px 0;
}

.highlight-row .level-column {
    background: var(--highlight-red); margin-right: 20px; border-right: none;
    padding: 10px; border-radius: 8px;
}
.highlight-row .level-number { color: #fff !important; }

/* Cards das Recompensas */
.reward-card { 
    display: flex; align-items: center; gap: 15px; padding: 10px;
    background: #ffffff; border-radius: 10px; text-decoration: none; color: inherit;
    border: 1px solid #eee; transition: all 0.2s ease;
}

.premium-card { background: aliceblue; border-color: #cceeff; }
.reward-card:hover { transform: translateY(-3px); border-color: var(--accent-blue); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }

/* Slot da Imagem Ampliado */
.img-slot { 
    width: 70px; height: 70px; background: #fff; border-radius: 8px; 
    display: flex; align-items: center; justify-content: center; 
    border: 1px solid #eee; flex-shrink: 0;
}
.img-slot img { width: 55px; height: 55px; object-fit: contain; }

.info .item-id { display: block; font-size: 12px; font-weight: 800; color: var(--primary-blue); margin-bottom: 2px; }
.info .xp-needed { font-size: 11px; color: #778899; font-weight: 600; }

/* Rodapé */
.main-footer { background: var(--primary-blue); color: #fff; padding: 60px 0 30px; margin-top: 100px; text-align: center; }
.footer-logo { font-weight: 900; font-size: 1.6rem; margin-bottom: 20px; letter-spacing: 1px; }
.footer-logo span { color: var(--accent-blue); }
.footer-links a { color: #fff; text-decoration: none; margin: 0 15px; font-size: 14px; opacity: 0.7; transition: 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--accent-blue); }
.footer-bottom { font-size: 12px; opacity: 0.4; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

/* Animação Pulsante nos Destaques Premium */
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}
.highlight-row .premium-card { animation: pulse-red 2s infinite; border-color: var(--highlight-red); }