@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Inter:wght@300;400;500;600;700;900&family=Montserrat:wght@400;600;700;900&display=swap');

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

:root {
    --bg: #121212;
    --bg-alt: #181818;
    --bg-outer: #0a0a0a;
    --text: #f0f0f0;
    --text-muted: #aaa;
    --text-light: #888;
    --accent: #ff4d5a;
    --border: #2a2a2a;
    --card-bg: #1a1a1a;
    --card-border: #2a2a2a;
    --container-width: 1100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-outer);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== MAIN CONTAINER (Floating card) ===== */
.main-container {
    max-width: var(--container-width);
    margin: 24px auto 0;
    background: var(--bg);
    position: relative;
    min-height: 100vh;
    border-radius: 20px 20px 0 0;
    box-shadow: none;
    overflow: hidden;
}

.hero-font {
    font-family: 'Montserrat', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-outer);
}

::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ===== HEADER ===== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s;
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.1);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a,
.nav-links button {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.03em;
}

.nav-links a:hover,
.nav-links button:hover {
    color: #fff;
}

.nav-btn-accent {
    background: #fff !important;
    color: #121212 !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase !important;
    transition: all 0.3s !important;
}

.nav-btn-accent:hover {
    background: var(--accent) !important;
    transform: translateY(-1px);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 60;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 55;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu button,
.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem !important;
    color: var(--text-light) !important;
}

/* ===== HERO WRAPPER ===== */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slideshow img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(18, 18, 18, 0) 0%,
            rgba(18, 18, 18, 0.05) 30%,
            rgba(18, 18, 18, 0.4) 60%,
            rgba(18, 18, 18, 0.85) 80%,
            rgba(18, 18, 18, 1) 100%);
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 2rem 3rem;
    max-width: 900px;
    width: 100%;
}

.hero-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dots span.active {
    background: #fff;
    transform: scale(1.3);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
}

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

/* Stats info box */
.info-box {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.info-item {
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.info-item:last-child {
    border-right: none;
}

.info-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: #c1121f;
    border-color: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::after {
    left: 100%;
}

/* ===== DASHED DIVIDER ===== */
.dashed-divider {
    margin: 0 2rem;
    padding: 0;
    border: none;
    border-top: 2px dashed var(--accent);
    opacity: 0.3;
}

/* ===== STATS / NUMBERS ===== */
.stats-section {
    padding: 3rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    border: none;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: transparent;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-left: 4px;
}

.stat-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== SECTION INTRO ===== */
.section-intro {
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}

.intro-avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.intro-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.intro-avatar span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

.intro-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 1rem;
}

.intro-date {
    color: var(--accent);
    font-weight: 600;
    margin-top: 1rem;
}

.sidebar-box {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.sidebar-row:last-child {
    border-bottom: none;
}

.sidebar-label {
    color: var(--text-light);
}

.sidebar-value {
    font-weight: 700;
    color: var(--text);
}

.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.play-btn:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.25);
}

.play-btn-bedrock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.play-btn-bedrock:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Event link & video embed */
.event-link {
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px dashed var(--accent);
    padding-bottom: 1px;
    transition: all 0.3s;
}

.event-link:hover {
    color: #c1121f;
    border-color: #c1121f;
}

.event-link i {
    font-size: 0.85em;
    margin-left: 2px;
}

.event-video {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.3s ease;
    margin: 0;
}

.event-video.open {
    max-height: 500px;
    margin: 1rem 0;
}

.event-video-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.event-video-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ===== FEATURES GRID ===== */
.features-section {
    padding: 3rem 2rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: lowercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: gap 0.3s;
}

.feature-link:hover {
    gap: 10px;
}

/* ===== GALLERY CAROUSEL ===== */
.gallery-section {
    padding: 3rem 0;
}

.gallery-section .section-title {
    padding: 0 2rem;
}

.carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 1rem 0;
}

.carousel-slide {
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(0.82);
    opacity: 0.35;
    filter: brightness(0.4);
    pointer-events: none;
}

.carousel-slide.active {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-arrow-left {
    left: 1.5rem;
}

.carousel-arrow-right {
    right: 1.5rem;
}

.carousel-dots {
    text-align: center;
    padding: 0.75rem 0;
}

.carousel-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 3rem 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

.price-card {
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: #ddd;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    border-color: var(--accent);
}

.price-card.featured:hover {
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.1);
}

.price-card .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    margin-right: 10px;
}

.price-card.featured .dot {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
}

.price-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline;
}

.price-card.featured .price-name {
    color: var(--accent);
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.5rem 0 1.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-amount .currency {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-period {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.price-card.featured .price-divider {
    background: rgba(230, 57, 70, 0.2);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
}

.price-features li i {
    color: #ccc;
    font-size: 0.65rem;
    margin-top: 5px;
}

.price-card.featured .price-features li i {
    color: var(--accent);
}

.price-features li .hl {
    color: var(--accent);
    font-weight: 500;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(255, 77, 90, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.buy-btn:hover {
    background: #ff6b76;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 77, 90, 0.35);
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col a,
.footer-col button {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
    transition: color 0.3s;
}

.footer-col a:hover,
.footer-col button:hover {
    color: var(--accent);
}

.footer-center {
    text-align: center;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0 auto 1rem;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-light);
}

.footer-right {
    text-align: right;
}

.footer-right p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    transform: scale(0.95);
    transition: transform 0.3s;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
}

.modal-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.modal-link-box {
    background: var(--bg-alt);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-link-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.modal-link-url {
    font-size: 0.75rem;
    color: var(--text-light);
    word-break: break-all;
    font-family: monospace;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-btn-cancel {
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--bg-alt);
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.modal-btn-cancel:hover {
    background: var(--border);
    color: var(--text);
}

.modal-btn-go {
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.modal-btn-go:hover {
    background: #c1121f;
}

/* Guide modal */
.guide-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1rem;
}

.guide-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.guide-box {
    position: relative;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.guide-overlay.active .guide-box {
    transform: scale(1);
}

.guide-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(230, 57, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.guide-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.guide-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.guide-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.guide-close:hover {
    background: var(--accent);
    color: #fff;
}

.guide-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s;
}

.step-item:hover .step-num {
    border-color: var(--accent);
    color: var(--accent);
}

.step-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-box {
    background: var(--bg-alt);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.step-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-btn {
    margin-top: 0.75rem;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg-alt);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.step-btn:hover {
    border-color: var(--accent);
    background: var(--bg);
    transform: translateY(-1px);
}

.step-btn.discord {
    background: #5865F2;
    color: #fff;
    border-color: #5865F2;
}

.step-btn.discord:hover {
    background: #4752c4;
}

.step-final .step-num {
    border-color: #22c55e;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox img {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 12px;
    transform: scale(0.95);
    transition: transform 0.3s;
    z-index: 1;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    z-index: 10;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    border: 1px solid var(--border);
}

.toast.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Ticker section */
.ticker-section {
    background: transparent;
    border-top: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 2rem;
    position: relative;
    z-index: 4;
}

.ticker-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.ticker-numbers {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.ticker-num {
    text-align: center;
}

.ticker-num span {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.ticker-num small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.ticker-sep {
    font-size: 2rem;
    color: #444;
}

.ticker-text {
    padding-left: 2rem;
    border-left: 1px solid var(--border);
}

.ticker-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.ticker-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Player heads */
.player-heads-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
    min-height: 44px;
}

.player-heads-wrap img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    margin-left: -8px;
    transition: transform 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.player-heads-wrap img:first-child {
    margin-left: 0;
}

.player-heads-wrap img:hover {
    transform: scale(1.2);
    z-index: 10;
    position: relative;
}

/* Tooltip */
.global-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    transform: translateX(-50%) translateY(-100%);
    margin-top: -8px;
}

/* ===== SYSTEMS KEYWORD & POPUP ===== */
.systems-keyword {
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px dashed var(--accent);
    padding-bottom: 1px;
    transition: all 0.3s;
    position: relative;
}
.systems-keyword:hover {
    color: #ff6b76;
    border-color: #ff6b76;
    text-shadow: 0 0 8px rgba(255, 77, 90, 0.3);
}
.systems-keyword.active {
    color: #fff;
    border-color: #fff;
}

.systems-popup {
    position: fixed;
    z-index: 999;
    width: 420px;
    max-width: 92vw;
    background: rgba(26, 26, 26, 0.97);
    border: 1px solid rgba(255, 77, 90, 0.25);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 77, 90, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85) translateY(10px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.systems-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.systems-popup-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(26, 26, 26, 0.97);
    border-right: 1px solid rgba(255, 77, 90, 0.25);
    border-bottom: 1px solid rgba(255, 77, 90, 0.25);
}

.systems-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.systems-popup-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.systems-popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}
.systems-popup-header i {
    font-size: 1.1rem;
    color: var(--accent);
}
.systems-popup-header span {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--accent), #ff8a94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.systems-popup-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.systems-popup-text strong {
    color: #fff;
    font-weight: 700;
}

.systems-popup-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 1rem;
}
.systems-popup-gallery img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
}
.systems-popup-gallery img:hover {
    border-color: var(--accent);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(255, 77, 90, 0.15);
}

.systems-popup-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.systems-popup-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 77, 90, 0.08);
    border: 1px solid rgba(255, 77, 90, 0.15);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
}
.systems-popup-badges span i {
    font-size: 0.6rem;
}

/* ===== BEDROCK POPUP ===== */
.bedrock-popup {
    position: fixed;
    z-index: 999;
    width: 380px;
    max-width: 92vw;
    background: rgba(26, 26, 26, 0.97);
    border: 1px solid rgba(255, 77, 90, 0.25);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 77, 90, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85) translateY(10px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.bedrock-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.bedrock-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
}
.bedrock-field-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 4px;
}
.bedrock-field-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
}
.bedrock-field-value {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    user-select: all;
}
.bedrock-copy-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 77, 90, 0.1);
    border: 1px solid rgba(255, 77, 90, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.bedrock-copy-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: scale(1.05);
}
.bedrock-copy-btn.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.price-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
}
.price-card-btn:hover {
    border-color: var(--text-muted);
    transform: translateY(-2px);
}
.price-card-btn.featured {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border);
    color: var(--text-muted);
    box-shadow: none;
}
.price-card-btn.featured:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
    color: var(--text);
    transform: translateY(-2px);
}

.pricing-footer-msg {
    text-align: center;
    margin-top: 3.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pricing-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 1.5rem auto 0;
    padding: 16px 40px;
    border-radius: 14px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 77, 90, 0.2);
}
.pricing-play-btn:hover {
    background: #ff6b76;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 77, 90, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-container {
        margin: 0;
        box-shadow: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-intro {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-col a,
    .footer-col button {
        text-align: center;
    }

    .info-box {
        flex-wrap: wrap;
    }

    .ticker-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ticker-text {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .ticker-num span {
        font-size: 2rem;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .hero {
        padding: 1rem;
    }
}