/* Amarelo substituindo o verde */
* {
    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 {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(250, 204, 21, 0.1);
    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;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #facc15;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #facc15, #eab308);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #facc15;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #facc15;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-login {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: #facc15;
}

.btn-register {
    background: linear-gradient(135deg, #facc15, #eab308);
    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(250, 204, 21, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
}

/* Hero */
.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 900;
    color: #eab308;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.money-stack {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect x="10" y="20" width="180" height="80" rx="8" fill="%23facc15" stroke="%23eab308" stroke-width="2"/><text x="100" y="70" text-anchor="middle" fill="white" font-family="Arial" font-size="24" font-weight="bold">100</text><text x="100" y="45" text-anchor="middle" fill="white" font-family="Arial" font-size="10">REPÚBLICA FEDERATIVA DO BRASIL</text></svg>');
}

/* Steps Section */
.steps-section {
    padding: 4rem 2rem;
    background: 
        radial-gradient(circle at 20% 50%, rgba(250, 204, 21, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(234, 179, 8, 0.03) 0%, transparent 50%);
}

.steps-grid::before {
    background: linear-gradient(90deg, 
        #facc15 0%, 
        #facc15 33%, 
        rgba(250, 204, 21, 0.3) 33%, 
        rgba(250, 204, 21, 0.3) 66%, 
        rgba(250, 204, 21, 0.3) 66%, 
        rgba(250, 204, 21, 0.3) 100%
    );
}

.step-icon {
    border: 2px solid rgba(250, 204, 21, 0.3);
}

.step-icon.active {
    border-color: #facc15;
    color: #facc15;
    box-shadow: 
        0 0 30px rgba(250, 204, 21, 0.3),
        0 0 60px rgba(250, 204, 21, 0.1);
    background: linear-gradient(145deg, rgba(250, 204, 21, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
}

.step-title.active {
    color: #facc15;
}

.step-item:hover .step-title {
    color: #facc15;
}

/* Games Section */
.games-section {
    background: 
        radial-gradient(circle at 20% 80%, rgba(250, 204, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 179, 8, 0.05) 0%, transparent 50%);
}

.game-category {
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.game-category:hover {
    border-color: rgba(250, 204, 21, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(250, 204, 21, 0.1);
}

.game-icon {
    border: 3px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.game-category:hover .game-icon {
    border-color: #facc15;
    box-shadow: 
        0 0 40px rgba(250, 204, 21, 0.3),
        0 0 80px rgba(250, 204, 21, 0.1);
}

.game-category:hover .game-title {
    color: #facc15;
}

.game-btn {
    background: linear-gradient(135deg, #facc15, #eab308);
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
}

.game-btn:hover {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
}

.game-btn:hover i {
    transform: translateX(4px);
}

/* Prize Carousel */
.prize-item {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(202, 138, 4, 0.05));
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.prize-value {
    color: #facc15;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(250, 204, 21, 0.1);
}

.footer-brand {
    color: #facc15;
}

.footer-links a:hover {
    color: #facc15;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 204, 21, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: #facc15;
}

::-webkit-scrollbar-thumb:hover {
  background: #facc15;
}
