@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Rye&family=Special+Elite&display=swap');

:root {
    --gold: #d4af37;
    --dark: #050505;
    --panel: #0e0e0e;
    --border: #222;
    --text: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Roboto Condensed', sans-serif;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.text-gold { color: var(--gold); }
.text-stroke { -webkit-text-stroke: 1px #fff; color: transparent; }
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05; pointer-events: none; z-index: 9999;
}
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.subtitle { color: #888; font-family: 'Special Elite'; letter-spacing: 2px; }

.hero-section {
    position: relative; height: 95vh; display: flex; align-items: center;
    border-bottom: 4px solid var(--gold); overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: brightness(0.4) grayscale(20%);
    animation: zoomEffect 20s infinite alternate;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--dark));
}
.hero-content {
    position: relative; z-index: 10; padding: 0 5%; max-width: 900px;
}
.tag-gold {
    background: var(--gold); color: #000; padding: 5px 10px;
    font-weight: bold; font-size: 0.8rem; display: inline-block; margin-bottom: 20px;
}
.hero-title {
    font-family: 'Rye', serif; font-size: 5rem; line-height: 0.9;
    color: #fff; text-transform: uppercase; margin-bottom: 20px;
}
.hero-text {
    font-family: 'Special Elite', monospace; font-size: 1.1rem;
    color: #ccc; margin-bottom: 40px; border-left: 3px solid var(--gold);
    padding-left: 20px; background: rgba(0,0,0,0.6);
}

.hero-actions { display: flex; gap: 20px; }
.btn-primary {
    background: var(--gold); color: #000; padding: 15px 40px;
    font-family: 'Rye', serif; font-weight: bold; clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}
.btn-primary:hover { transform: scale(1.05); background: #fff; }
.btn-outline {
    border: 1px solid #fff; color: #fff; padding: 15px 40px;
    font-family: 'Rye', serif; clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}
.btn-outline:hover { background: #fff; color: #000; }


.status-dock {
    position: absolute; bottom: 0; right: 0; display: flex;
    background: #000; border-top: 1px solid var(--border);
}
.status-item {
    padding: 15px 30px; border-left: 1px solid var(--border);
    display: flex; flex-direction: column;
}
.lbl { font-size: 0.7rem; color: #666; }
.val { font-family: 'Special Elite'; color: #fff; margin-top: 5px; }

.marquee-strip {
    background: var(--gold); color: #000; padding: 10px 0; overflow: hidden; white-space: nowrap;
}
.marquee-content {
    display: inline-block; animation: scroll 30s linear infinite;
    font-family: 'Rye', serif; font-size: 1.2rem;
}

.content-section { padding: 80px 5%; background: var(--dark); }
.container-split { display: flex; gap: 50px; align-items: center; max-width: 1400px; margin: 0 auto; }
.text-block { flex: 1; }
.image-block { flex: 1; position: relative; text-align: center; }
.image-block img { max-width: 100%; transition: 0.5s; filter: drop-shadow(0 0 20px rgba(0,0,0,0.8)); }

.section-title { font-family: 'Rye'; font-size: 3rem; margin-bottom: 30px; color: #fff; }
.stats-grid { display: flex; gap: 20px; margin-top: 40px; }
.stat-box { background: #111; padding: 20px; border: 1px solid var(--border); text-align: center; flex: 1; }
.stat-box .num { font-family: 'Rye'; font-size: 2.5rem; color: var(--gold); display: block; }

.patch-meaning li { margin-bottom: 15px; border-bottom: 1px solid #222; padding-bottom: 10px; color: #aaa; }

.garage-section { padding: 80px 5%; background: #080808; border-top: 1px solid #222; }
.garage-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto;
}
.bike-card {
    background: #111; border: 1px solid #222; transition: 0.3s;
}
.bike-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.bike-img {
    height: 250px; width: 100%; background-size: cover; background-position: center;
    filter: grayscale(100%); transition: 0.5s;
}
.bike-card:hover .bike-img { filter: grayscale(0%); }
.bike-info { padding: 20px; text-align: center; }
.bike-info h3 { font-family: 'Rye'; color: #fff; margin-bottom: 5px; }
.bike-info p { font-family: 'Special Elite'; color: #666; font-size: 0.9rem; }

.grid-section { padding: 80px 5%; background: var(--panel); }
.bento-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px; gap: 20px; max-width: 1400px; margin: 0 auto;
}
.grid-card {
    background: var(--panel); border: 1px solid var(--border);
    position: relative; overflow: hidden; display: block;
    background-size: cover; background-position: center;
}
.grid-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); transition: 0.3s;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.grid-card:hover .card-overlay { background: rgba(0,0,0,0.3); }

.card-tag { font-family: 'Special Elite'; font-size: 0.8rem; background: #000; color: #fff; padding: 2px 8px; width: fit-content; margin-bottom: 10px; }
.card-tag.gold { background: var(--gold); color: #000; }

.card-content { padding: 20px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.card-content.center { justify-content: center; align-items: center; text-align: center; }
.card-content.row { flex-direction: row; align-items: center; justify-content: space-between; }

.wide { grid-column: span 2; }
.tall { grid-row: span 2; }
.icon-large { font-size: 4rem; margin-bottom: 20px; }
.rank-list li { color: #888; margin-bottom: 5px; font-family: 'Rye'; }

.cta-section { padding: 100px 5%; text-align: center; background: linear-gradient(to top, #000, #111); }
.btn-discord {
    display: inline-block; margin-top: 30px; background: #5865F2; color: #fff;
    padding: 15px 30px; font-family: 'Rye'; border-radius: 4px;
}
.steps-row { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.step { background: #111; padding: 10px 20px; border: 1px solid #333; }
.step.gold { border-color: var(--gold); color: var(--gold); }

.main-footer { text-align: center; padding: 40px; background: #050505; color: #666; font-size: 0.8rem; border-top: 1px solid #222; }
.footer-links a { margin: 0 10px; color: #888; }

.music-player-dock {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 70px;
    background: rgba(0, 0, 0, 0.95); border-top: 1px solid var(--gold);
    backdrop-filter: blur(10px); z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.track-info { display: flex; flex-direction: column; justify-content: center; }
.track-status { font-size: 0.65rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 3px; display: flex; align-items: center; gap: 5px; }
.track-title { font-family: 'Rye', serif; color: #fff; font-size: 1rem; letter-spacing: 1px; }

.pulse-dot {
    width: 6px; height: 6px; background: #f00; border-radius: 50%;
    display: inline-block; animation: blink 2s infinite;
}

.player-controls { display: flex; align-items: center; gap: 20px; }
.player-controls button {
    background: none; border: none; color: #666; font-size: 1.1rem;
    cursor: pointer; transition: 0.3s;
}
.player-controls button:hover { color: #fff; transform: scale(1.1); }

.play-btn {
    width: 40px; height: 40px; border: 1px solid var(--gold) !important;
    border-radius: 50%; color: var(--gold) !important;
    display: flex; align-items: center; justify-content: center;
}
.play-btn:hover { background: var(--gold); color: #000 !important; }

.volume-indicator { display: flex; align-items: center; gap: 10px; }
.vol-bar { width: 60px; height: 3px; background: #333; border-radius: 2px; }


/* Responsivo */
@media (max-width: 900px) {
    .hero-title { font-size: 3rem; }
    .container-split { flex-direction: column; }
    .bento-grid, .garage-grid { grid-template-columns: 1fr; }
    .wide, .tall { grid-column: span 1; grid-row: span 1; }
    .status-dock { position: relative; width: 100%; flex-wrap: wrap; }
    .status-item { flex: 1 1 50%; border-bottom: 1px solid #222; }
    .music-player-dock { padding: 0 15px; height: 60px; }
    .track-status { display: none; } /* Esconde o "No Ar" no celular */
    .volume-indicator { display: none; }
    .track-title { font-size: 0.8rem; max-width: 150px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

@keyframes zoomEffect { from { transform: scale(1); } to { transform: scale(1.1); } }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }