* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Tamanho base do logo (ajuste se quiser) */
:root { --logo-size: 82px; }

/* A âncora do logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Quando quiser “um pouco maior” */
.logo--lg { --logo-size: 120px; } /* aumente/diminua conforme o gosto */

/* Imagem do logo */
.logo-image {
  height: var(--logo-size);
  width: auto;
  display: block;
}

/* Fallback com a letra inicial */
.logo-icon {
  width: var(--logo-size);
  height: var(--logo-size);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: calc(var(--logo-size) * 0.58);
  line-height: 1;
  border-radius: 12px;        /* opcional: deixa mais bonito */
  background: #111;           /* personalize */
  color: #fff;
}

/* Opcional: em telas pequenas, reduza levemente */
@media (max-width: 480px) {
  :root { --logo-size: 48px; }
  .logo--lg { --logo-size: 56px; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FFD700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: #FFD700;
}

.btn-register {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    padding: 4rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-banner {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* Steps Section */
.steps-section {
    padding: 4rem 2rem;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

/* Connecting Lines */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
        #FFD700 0%,
        #FFD700 33%,
        rgba(255, 215, 0, 0.3) 33%,
        rgba(255, 215, 0, 0.3) 66%,
        rgba(255, 215, 0, 0.3) 100%
    );
    z-index: 1;
}

.step-icon {
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.step-icon::before {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.step-icon.active {
    border-color: #FFD700;
    color: #FFD700;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.15);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(184, 134, 11, 0.05));
}

.step-title.active,
.step-item:hover .step-title {
    color: #FFD700;
}

/* Games Section */
.games-section {
    padding: 4rem 2rem;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
}

.game-category {
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.game-category:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.1);
}

.game-icon {
    border: 3px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.game-category:hover .game-icon {
    border-color: #FFD700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3),
                0 0 80px rgba(255, 215, 0, 0.1);
}

.game-category:hover .game-title {
    color: #FFD700;
}

.game-btn {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.game-btn:hover {
    background: linear-gradient(135deg, #FFB800, #FFD700);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* Prize Carousel */
.prize-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(184, 134, 11, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.prize-value {
    color: #FFD700;
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding: 3rem 0 2rem;
}

.footer-brand {
    color: #FFD700;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: #FFD700;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFB800;
}

/* ========= GOLD OVERRIDES (força dourado e elimina verdes) ========= */
:root{
  --gold:#FFD700;
  --gold-dark:#B8860B;
  --gold-hover:#FFB800;
  --gold-10:rgba(255,215,0,0.10);
  --gold-15:rgba(255,215,0,0.15);
  --gold-20:rgba(255,215,0,0.20);
  --gold-30:rgba(255,215,0,0.30);
  --shadow-gold-3:0 4px 20px rgba(255,215,0,0.3);
  --shadow-gold-4:0 8px 30px rgba(255,215,0,0.4);
}

/* links / hovers / textos de destaque */
a:hover,
.footer-links a:hover,
.nav-menu a:hover,
.step-title.active,
.game-title:hover,
.footer-brand,
.prize-value,
.highlight-text { color: var(--gold) !important; }

/* botões e badges que possam vir de outras páginas */
.btn-register,
.game-btn,
.copy-btn,
.submit-btn,
.play-button,
.price-badge,
.login-icon,
.brand-logo{
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color:#fff !important;
  box-shadow: var(--shadow-gold-3) !important;
}
.btn-register:hover,
.game-btn:hover,
.copy-btn:hover,
.submit-btn:hover,
.play-button:hover{
  background: linear-gradient(135deg, var(--gold-hover), var(--gold)) !important;
  box-shadow: var(--shadow-gold-4) !important;
}

/* bordas e contornos */
.header,
.footer,
.footer-bottom{
  border-color: var(--gold-15) !important;
}
.game-category,
.prize-item{
  border-color: var(--gold-20) !important;
}

/* ícones e contornos circulares */
.step-icon,
.game-icon{ border-color: var(--gold-30) !important; }
.step-icon.active,
.game-icon{ color: var(--gold) !important; }

/* inputs focados */
.form-input:focus,
input:focus,
textarea:focus,
select:focus{
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-15) !important;
}

/* estados de “ganhou” que eram verdes */
.bet-status.win,
.bet-item.win::before,
.stat-icon.saldo{
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color:#fff !important;
  border-color: var(--gold-20) !important;
}

/* Notiflix - sucesso em dourado */
.notiflix-notify-success{
  background: var(--gold) !important;
  color:#000 !important;
}

/* scrollbar (reforço) */
::-webkit-scrollbar-thumb{ background: var(--gold) !important; }
::-webkit-scrollbar-thumb:hover{ background: var(--gold-hover) !important; }
