@charset "UTF-8";

/* ===========================
       Hero
    =========================== */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    overflow: hidden;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
/* fallback placeholder */
.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1c1c1c 0%, #050505 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 16px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        transparent 60%
    );
}
.hero-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 4px;
}
.hero-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}
.btn {
    flex: 1;
    display: block;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 0;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}
.btn:hover {
    background: #fff;
    color: #000;
}
.btn.btn-fill {
    background: #fff;
    color: #000;
}
.btn.btn-fill:hover {
    background: transparent;
    color: #fff;
}

/* ===========================
       Carousel / Banner area
    =========================== */
.carousel-wrap {
    width: 100%;
    background: #0a0a0a;
}
.carousel-slide {
    width: 100%;
    height: auto;
    aspect-ratio: 360 / 130;
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
/* img placeholder */
.carousel-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #181818 0%, #0d0d0d 100%);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 12px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: 1px solid #555;
}
.dot.active {
    background: #fff;
    border-color: #fff;
}

/* ===========================
       Sections common
    =========================== */
.section {
    padding: 28px 16px;
    border-top: 1px solid var(--border);
}
.section-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ===========================
       News list (MEMBERS ONLY)
    =========================== */
.members-only-news-list {
    list-style: none;
}
.members-only-news-list .news-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.members-only-news-list .news-item:last-child {
    border-bottom: none;
}
.members-only-news-list .news-date {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.members-only-news-list .news-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    padding: 1px 6px;
    border: 1px solid var(--border);
    color: #aaa;
    margin-right: 6px;
}
.members-only-news-list .news-text {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #ddd;
}

/* ===========================
       Content grid (icons 3×2)
    =========================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.content-btn {
    aspect-ratio: 1 / 1;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.content-btn:hover {
    background: #1e1e1e;
}
.content-btn svg {
    width: 80px;
    height: 80px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.content-btn img {
    max-width: 80%;
}
.content-btn span {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .content-btn svg {
        width: 36px;
        height: 36px;
    }
.content-btn span {
    font-size: 0.72rem;
}
}
/* ===========================
       Shop banner
    =========================== */
.shop-banner {
    display: block;
    width: calc(100% - 32px);
    height: auto;
    aspect-ratio: 349 / 68;
    margin: 0 16px 28px;
    background: #111;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.shop-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}
.shop-banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #141414, #0a0a0a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.shop-banner-placeholder .shop-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
}
.shop-banner-placeholder .shop-sub {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #888;
}

/* ===========================
       Support links
    =========================== */
.support-list {
    list-style: none;
}
.support-item a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    color: #ccc;
    position: relative;
}
.support-item a::after {
    content: "›";
    position: absolute;
    right: 4px;
    color: #555;
    font-size: 1rem;
}
.support-item a:hover {
    color: #fff;
}

/* ===========================
       Footer
    =========================== */
footer {
    border-top: 1px solid var(--border);
    padding: 32px 16px 24px;
    text-align: center;
}
.footer-logo {
    margin-bottom: 10px;
}
.footer-logo img {
    display: inline-block;
    width: auto;
    max-width: 160px;
    height: auto;
}
.footer-copy {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
