/* --- RESET & BASIC SETUP --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    text-align: center;
    overflow-x: hidden;
}

/* --- TOP BAR --- */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.top-bar-claim {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-weight: 800;
    color: #9e9e9e;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.top-bar-icons a, .footer-icons a {
    color: #9e9e9e;
    text-decoration: none;
    margin-left: 18px;
    font-size: 1.2rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.top-bar-icons a:hover, .footer-icons a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 45vh;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    display: none;
}

/* --- MAIN CONTAINER --- */
.main-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    position: relative;
    z-index: 5;
}

.brand-logo {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
}

.club-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* --- COPY BLOCK --- */
.compliment {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.sub-intro {
    color: #cccccc;
    margin-bottom: 20px;
}

.perks-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 0 auto 32px auto;
}

.perks-list li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.perks-list span {
    margin-right: 8px;
}

/* --- PROMO CODE DISPLAY (THANKS PAGE) --- */
.promo-box {
    background: #1a1a1a;
    border: 2px dashed #ffffff;
    border-radius: 8px;
    padding: 18px 36px;
    margin: 20px auto 12px auto;
    display: inline-block;
}

.promo-code {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #ffffff;
    line-height: 1;
    display: block;
    user-select: all;
}

.promo-hint {
    font-size: 0.88rem;
    color: #888888;
    margin-top: 16px;
    margin-bottom: 28px;
    line-height: 1.4;
}

.promo-hint strong {
    color: #ffffff;
}

/* --- FORM STYLING & CTA WRAPPER --- */
.form-wrapper {
    background: #111111;
    border: 1px solid #222222;
    padding: 28px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 420px;
    margin: 0 auto;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid #333333;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    text-align: center;
}

.form-input:focus {
    border-color: #666666;
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-btn {
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    color: #000000;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.2s ease;
}

.form-btn:hover {
    background: #e6e6e6;
    transform: translateY(-2px);
}

.shop-cta-btn {
    display: inline-block;
    text-decoration: none;
    max-width: 420px;
    line-height: 1.4;
}

.legal-text {
    font-size: 0.8rem;
    color: #777777;
    margin-top: 14px;
}

.privacy-link {
    color: #999999;
    text-decoration: underline;
}

/* --- CONNECT & SHOP SECTION --- */
.connect-section {
    border-top: 1px solid #222222;
    padding-top: 32px;
}

.connect-title, .shop-cta-title {
    font-size: 0.95rem;
    color: #888888;
    margin-bottom: 12px;
}

.social-big-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #444444;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-btn:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #000000;
}

.shop-url-btn {
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}

/* --- FOOTER --- */
.site-footer {
    border-top: 1px solid #1a1a1a;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    font-size: 0.85rem;
    color: #666666;
}

@media (min-width: 600px) {
    .site-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* --- MODAL (PRIVACY POLICY) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
}

.modal:target {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    position: relative;
    border: 1px solid #333;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    text-decoration: none;
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 600px) {
    .desktop-only {
        display: none;
    }
}