* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
}

/* 1. Age Gate Styling */
#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gate-content {
    text-align: center;
    padding: 40px;
    background: #161616;
    border: 1px solid #333;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.gate-content h1 {
    color: #ff3e3e;
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gate-content p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btns {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn {
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-yes {
    background: #ff3e3e;
    color: #fff;
	cursor: pointer;
}

.btn-yes:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.4);
}

.btn-no {
    background: transparent;
    color: #666;
    font-size: 14px;
}

/* 2. Main Content & Offer Grid */
#main-content {
    padding-top: 50px;
}

.offer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    min-height: 80vh;
}

/* Base Card Style */
.offer-card {
    flex: 1;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Side Buttons (Smaller) */
.side-btn {
    background: #1c1c1e;
    height: 280px;
    border: 1px solid #333;
}

.side-btn:hover {
    border-color: #555;
    background: #252527;
}

/* Center Featured Button (Taller & Glowing) */
.featured-btn {
    background: linear-gradient(180deg, #ff4e50 0%, #f9d423 100%); /* Orange-Red to Gold */
    height: 380px; 
    z-index: 10;
    box-shadow: 0 10px 40px rgba(255, 78, 80, 0.3);
    border: 2px solid #ffffff33;
    animation: pulse 2s infinite; /* Attention grabbing animation */
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 40px rgba(255, 78, 80, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 10px 60px rgba(255, 78, 80, 0.5); }
    100% { transform: scale(1); box-shadow: 0 10px 40px rgba(255, 78, 80, 0.3); }
}

.featured-btn h3 {
    font-size: 24px;
    color: #000;
    font-weight: 900;
}

.featured-btn p {
    color: #222;
    font-weight: 600;
}

.badge {
    position: absolute;
    top: 15px;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 900;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Card Elements */
.icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.cta-text {
    margin-top: 20px;
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
}

/* 3. Mobile Responsiveness */
@media (max-width: 768px) {
    .offer-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .offer-card {
        width: 100%;
        flex: none;
    }

    .featured-btn {
        height: 250px;
        order: -1; /* Keep the money-maker at the top on phones */
    }

    .side-btn {
        height: 180px;
    }
}

/* Footer Styling */
.footer-links {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
}
.footer-links p { color: #444; font-size: 10px; margin-top: 10px; }

/* Modal/Popup Styling */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
    border: 1px solid #333;
    color: #ccc;
}
.modal-card h3 { color: #fff; margin-bottom: 15px; }
.modal-card p { font-size: 13px; line-height: 1.5; margin-bottom: 20px; }
.modal-close {
    background: #ff0050;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.contact-form input, 
.contact-form textarea {
    background: #252527;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-family: inherit;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #ff3e3e;
}