/* ── Background ───────────────────────────────────────────────── */
body {
    background-image: url('https://images.squarespace-cdn.com/content/654e9f1c79033c2b2d0b18ed/27a54b0c-d97e-4a9b-b916-9af516cd4a74/FINEEEEEEE.png?content-type=image%2Fpng');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.action-bar {
    background: linear-gradient(to bottom, rgba(14, 14, 14, 1), rgba(14, 14, 14, 0));
}

/* ── Page wrapper ─────────────────────────────────────────────── */
.home-page {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px 48px;
}

/* ── HERO SECTION ─────────────────────────────────────────────── */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 680px;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #d4a017;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.4), inset 0 0 20px rgba(212, 160, 23, 0.1),
                0 0 0 1px rgba(212, 160, 23, 0.6);
    animation: shimmerGold 3s ease-in-out infinite;
}

@keyframes shimmerGold {
    0%, 100% {
        border-color: #d4a017;
        box-shadow: 0 0 20px rgba(212, 160, 23, 0.4), inset 0 0 20px rgba(212, 160, 23, 0.1),
                    0 0 0 1px rgba(212, 160, 23, 0.6);
    }
    50% {
        border-color: #ffd700;
        box-shadow: 0 0 35px rgba(212, 160, 23, 0.8), inset 0 0 30px rgba(212, 160, 23, 0.25),
                    0 0 0 1px rgba(255, 215, 0, 0.8);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 12px;
    border: 2px solid;
    border-image: linear-gradient(90deg, #d4a017, #b8860b, #d4a017) 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    padding: 48px;
    max-width: 500px;
}

.hero-description {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 350px;
    padding: 24px 0;
    background: none;
    border: none;
}

.hero-description p {
    margin: 0;
    font-size: 1.35rem;
    color: #e8e0ce;
    line-height: 2;
    letter-spacing: 0.02em;
    word-spacing: 0.1em;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(212, 160, 23, 0.15));
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 24px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #d4a017;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c9a96e;
    margin: 0;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.cta-large {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
    flex: 1;
    min-height: 32px !important;
    min-width: 100px !important;
}

.cta-secondary {
    flex: 1;
    min-height: 32px !important;
    min-width: 100px !important;
}

.cta-hero {
    flex: 1;
}


/* ── FEATURES SECTION ─────────────────────────────────────────── */
.features-section {
    display: flex;
    flex-direction: column;
    margin: 24px 0;
}


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

.feature-card {
    background: linear-gradient(135deg, rgba(25, 18, 10, 0.85), rgba(35, 25, 12, 0.8));
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, rgba(30, 20, 10, 0.6), rgba(40, 30, 10, 0.55));
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    font-size: 2.5rem;
    color: #d4a017;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
}

.feature-card h3 {
    font-family: 'HwyGothic', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.05em;
}

.feature-card p {
    font-size: 0.95rem;
    color: #b8b0a0;
    margin: 0;
    line-height: 1.6;
}

/* ── TOP SECTION ──────────────────────────────────────────────── */
.home-top {
    display: block;
    width: 100%;
}

/* 16:9 responsive iframe */
.home-video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.7);
    background: #000;
    width: 100%;
}
.home-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA column - REMOVED */

.video-section-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    letter-spacing: 0.05em;
}

.video-section-desc {
    font-size: 1rem;
    color: #c9a96e;
    margin: 0 0 8px;
    line-height: 1.5;
}

.quick-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.quick-links a {
    font-size: 0.9rem;
    color: #b8b0a0;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

.quick-links a:hover {
    color: #d4a017;
    border-bottom-color: #d4a017;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 0;
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-align: center;
    border: none;
    background-image: url('/img/button_hotdog.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    min-height: 32px;
    min-width: 100px;
    aspect-ratio: 5 / 2;
}

.cta-btn::before {
    display: none;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    filter: brightness(1) !important;
    color: #fff !important;
}

.cta-btn:hover::before {
    display: none;
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-play {
    background-image: url('/img/button_hotdog.png');
}
.cta-discord {
    background-image: url('/img/button_hotdog.png');
}
.cta-shop {
    background: linear-gradient(135deg, #d4a017, #b8860b) !important;
    color: #0e0e0e !important;
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.4) !important;
    min-height: auto !important;
    min-width: auto !important;
    aspect-ratio: auto !important;
    padding: 11px 20px !important;
    font-size: 0.8rem !important;
    border-radius: 6px;
}

.cta-shop:hover {
    background: linear-gradient(135deg, #ffd700, #d4a017) !important;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5) !important;
}

.cta-amazon {
    background: linear-gradient(135deg, #ff9900, #ff8800) !important;
    color: #0e0e0e !important;
    box-shadow: 0 4px 14px rgba(255, 153, 0, 0.4) !important;
    min-height: auto !important;
    min-width: auto !important;
    aspect-ratio: auto !important;
    padding: 11px 20px !important;
    font-size: 0.8rem !important;
    border-radius: 6px;
}

.cta-amazon:hover {
    background: linear-gradient(135deg, #ffaa00, #ff9900) !important;
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6) !important;
}

/* ── BOTTOM GRID ──────────────────────────────────────────────── */
.home-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Shared section card */
.home-section {
    background: linear-gradient(135deg, rgba(30, 25, 15, 0.95), rgba(20, 15, 10, 0.95));
    border: 1px solid rgba(212, 160, 23, 0.35);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(212, 160, 23, 0.1);
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.1), transparent);
    pointer-events: none;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 2px solid rgba(212, 160, 23, 0.4);
    padding-bottom: 16px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4a017, transparent);
}

.section-label {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #ffd700;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.section-subtitle {
    font-size: 0.95rem;
    color: #d4a017;
    margin: 0;
    font-weight: 500;
}

/* ── SHOP SECTION ─────────────────────────────────────────────── */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(40, 35, 20, 0.8), rgba(30, 25, 15, 0.8));
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(212, 160, 23, 0.25), 0 4px 16px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, rgba(50, 40, 20, 0.9), rgba(40, 30, 15, 0.9));
}

.product-img-wrap {
    flex: 1 1 auto;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    min-height: 0;
    min-height: 200px;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

.product-info {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}
.product-name {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.8rem;
    color: #e8e0ce;
    line-height: 1.2;
}
.product-cta {
    font-size: 0.7rem;
    color: #c9a96e;
    letter-spacing: 0.08em;
    font-weight: bold;
}

/* ── BOOK SECTION ─────────────────────────────────────────────── */
.book-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: stretch;
}

.book-img-wrap {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3), 0 0 20px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 160, 23, 0.3);
    transition: all 0.3s ease;
}
.book-img-wrap:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(212, 160, 23, 0.5), 0 0 30px rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 160, 23, 0.6);
}
.book-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.book-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.book-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffd700;
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.book-links .cta-btn {
    flex: 1;
    background: linear-gradient(135deg, #d4a017, #b8860b) !important;
    color: #0e0e0e !important;
    min-height: 44px !important;
    min-width: auto !important;
    aspect-ratio: auto !important;
    padding: 12px 20px !important;
    font-size: 0.8rem !important;
    font-weight: bold !important;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    border-radius: 8px;
    text-shadow: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.book-links .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, #ffd700, #d4a017) !important;
    filter: brightness(1.1);
}

.book-links .cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.book-tagline {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #e8e0ce;
    line-height: 1.6;
}

/* ── MOBILE ───────────────────────────────────────────────────── */
@media only screen and ((max-width: 767px) or (hover: none)) {
    .home-page {
        padding: 16px 12px 90px;
        gap: 36px;
    }

    .hero-section {
        min-height: 450px;
        margin-bottom: 12px;
    }

    .hero-content {
        padding: 24px;
        max-width: 100%;
    }

    .hero-description {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .cta-btn {
        min-height: 24px !important;
        min-width: 80px !important;
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
        aspect-ratio: 6 / 1 !important;
    }

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

    .feature-card {
        padding: 24px 16px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 2rem;
    }

    /* Stack video + CTAs vertically */
    .home-top {
        display: block;
    }

    .quick-links {
        flex-direction: column;
        gap: 8px;
    }

    .quick-links a {
        padding: 8px 0;
    }

    /* Stack shop and book vertically */
    .home-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Side-by-side product cards stay 2-col on mobile */
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-img-wrap {
        flex: 1 1 auto;
        min-height: 120px;
        max-height: 120px;
    }

    .product-name {
        font-size: 0.75rem;
    }

    .product-cta {
        font-size: 0.65rem;
    }

    /* Book: reset to compact proportions on mobile */
    .book-content {
        flex: none;
    }
    .book-img-wrap {
        flex: 0 0 40%;
        max-height: 200px;
    }

    .book-links {
        gap: 6px;
    }

    .book-links .cta-btn {
        margin: 0;
        padding: 6px 10px !important;
        font-size: 0.6rem !important;
        min-height: 22px !important;
    }

    .action-bar {
        background-color: #0e0e0e;
    }
}
