/* === CSS RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg: #050508;
    --bg-alt: #0d0d12;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #f59e0b; /* Gold/Amber Slots Accent */
    --accent-glow: rgba(245, 158, 11, 0.5);
    --secondary: #8b5cf6; /* Neon Purple Accent */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-glass: 0 8px 32px 0 rgba(0,0,0,0.8);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --container: 1240px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'General Sans', system-ui, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3, h4 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* === STRUCTURAL BASELINES === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--glass-border);
}

.divider-stripe {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* === NAVIGATION (Tabbed Style) === */
.mega-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(13, 13, 18, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
}

.nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-tabs {
    display: flex;
    gap: 8px;
}

.nav-tab {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-tab.active {
    background: var(--glass-bg);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.nav-tab:hover:not(.active) {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav-cta .btn-download-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

/* === HERO SECTION === */
.hero-epic {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2a 0%, #11111a 30%, #09090b 70%, #050508 100%);
    padding-top: 120px;
}

.hero-icon {
    width: 160px;
    height: 160px;
    border-radius: 40px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 80px var(--accent-glow);
    animation: float 6s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    margin-bottom: 3rem;
}

.hero-rating i { color: var(--accent); }

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* === UTILS & BUTTONS === */
.btn-pill {
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--glass-bg);
    transform: scale(1.05);
}

/* === MAGAZINE FEATURES === */
.magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.editorial-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .editorial-block { grid-template-columns: 55fr 45fr; }
    .editorial-block.reverse { grid-template-columns: 45fr 55fr; }
    .editorial-block.reverse .editorial-content { order: 2; }
    .editorial-block.reverse .editorial-visual { order: 1; }
}

.editorial-number {
    font-size: 8rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    color: var(--accent);
    opacity: 0.1;
    line-height: 0.8;
    margin-bottom: -40px;
}

.editorial-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.editorial-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.editorial-visual img {
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    margin: 0 auto;
}

/* === GIANT STATS === */
.stats-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-value {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === REVIEWS BREAKDOWN === */
.reviews-section { background: var(--bg-alt); }

.rating-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .rating-header { flex-direction: row; justify-content: center; text-align: left; }
}

.rating-big-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.rating-big-badge h3 { font-size: 5rem; color: #fff; }
.rating-big-badge .stars { color: var(--accent); margin: 0.5rem 0; font-size: 1.5rem; }

.rating-bars {
    flex-grow: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-bg {
    flex-grow: 1;
    height: 8px;
    background: var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }

.reviews-masonry {
    columns: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) { .reviews-masonry { columns: 2; } }
@media (min-width: 1024px) { .reviews-masonry { columns: 3; } }

.review-card {
    break-inside: avoid;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* === SCREENSHOT GALLERY === */
.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-container::-webkit-scrollbar { display: none; }

.slider-item {
    flex: 0 0 auto;
    width: auto;
    scroll-snap-align: center;
}

.slider-item img {
    height: 500px;
    width: auto;
    border-radius: 24px;
    background: var(--bg-alt);
}

@media (max-width: 768px) {
    .slider-item img { height: 350px; }
}

/* === FAQ ACCORDION === */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-item.active .ph-caret-down { transform: rotate(180deg); }

/* === DOWNLOAD CTA === */
.download-footer-cta {
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2a, var(--bg));
}

.download-footer-cta img.icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    margin: 0 auto 2rem;
}

/* === FOOTER === */
.mega-footer {
    background: #000;
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a:hover { color: var(--accent); }

.newsletter-box {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter-box input {
    background: var(--bg-alt);
    border: 1px solid var(--glass-border);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    color: #fff;
    flex-grow: 1;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* === MOBILE MENU ACCORDION === */
@media (max-width: 767px) {
    .footer-col {
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 1.5rem;
    }
    .footer-col ul { display: none; }
    .footer-col.active ul { display: block; margin-top: 1rem; }
}

/* === BACKGROUND BLOBS === */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

.blob-2 {
    background: var(--secondary);
    right: -200px;
    top: 20%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes move {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
