/* ============================================================
   smokingclipshd.com – Global Stylesheet
   Version: 2025-01-14
   ============================================================ */

/* ============================================================
   CSS VARIABLES & COLOR PALETTE
   ============================================================ */
:root {
    --color-purple-dark: #1a0a2e;
    --color-purple-mid: #2d1b4e;
    --color-purple-light: #4a2c7a;
    --color-purple-accent: #7b4bb3;
    --color-pink-dark: #8b2a5c;
    --color-pink-mid: #c94b8c;
    --color-pink-light: #e87ab5;
    --color-pink-glow: #ff00ff;
    --color-pink-hot: #ff1493;
    --color-bg-dark: #0a0a0a;
    --color-bg-card: rgba(45, 27, 78, 0.85);
    --color-bg-card-hover: rgba(74, 44, 122, 0.95);
    --color-text-primary: #f0e6f6;
    --color-text-secondary: #c9b8d9;
    --color-text-muted: #8a7a9a;
    --color-border: rgba(123, 75, 179, 0.4);
    --color-border-hover: rgba(201, 75, 140, 0.6);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(123, 75, 179, 0.2);
    --shadow-card-hover: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 75, 140, 0.3);
    --max-content-width: 1400px;
    --header-height: 60px;
    --banner-height: 80px;
    --card-border-radius: 12px;
    --button-border-radius: 8px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--color-pink-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-pink-glow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================================
   AGE GATE OVERLAY & PANEL
   ============================================================ */
#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.age-gate-panel {
    background: linear-gradient(180deg, #1e1e32 0%, #12121c 100%);
    border: 3px solid var(--color-pink-glow);
    border-radius: 20px;
    padding: 45px 50px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.6),
        0 0 80px rgba(255, 0, 255, 0.4),
        0 0 120px rgba(255, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: panelGlow 2.5s ease-in-out infinite;
}

@keyframes panelGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.6),
            0 0 80px rgba(255, 0, 255, 0.4),
            0 0 120px rgba(255, 0, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: #ff00ff;
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 0, 255, 0.8),
            0 0 100px rgba(255, 0, 255, 0.5),
            0 0 150px rgba(255, 0, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        border-color: #ff44ff;
    }
}

.age-gate-icon {
    font-size: 1.8rem;
    color: var(--color-pink-glow);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

.age-gate-icon-bottom {
    font-size: 1.8rem;
    color: var(--color-pink-glow);
    margin-top: 5px;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.age-gate-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-pink-glow);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.15;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 30px rgba(255, 0, 255, 0.4);
}

.age-gate-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.age-gate-question {
    font-size: 1.05rem;
    color: var(--color-text-primary);
    margin-bottom: 28px;
    font-weight: 600;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* YES Button - Hot Pink Gradient */
.age-gate-btn-yes {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(90deg, #ff0080 0%, #ff00ff 50%, #ff0080 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 25px rgba(255, 0, 128, 0.5),
        0 0 40px rgba(255, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.age-gate-btn-yes:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 35px rgba(255, 0, 128, 0.7),
        0 0 60px rgba(255, 0, 255, 0.5);
}

.age-gate-btn-yes:active {
    transform: translateY(-1px);
}

.age-gate-btn-yes .btn-icon {
    font-size: 1.1rem;
    font-weight: bold;
}

/* NO Button - Dark Transparent with Border */
.age-gate-btn-no {
    width: 100%;
    padding: 16px 25px;
    background: rgba(30, 30, 45, 0.7);
    border: 2px solid rgba(150, 150, 170, 0.4);
    border-radius: 50px;
    color: rgba(200, 200, 220, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.age-gate-btn-no:hover {
    background: rgba(50, 50, 70, 0.8);
    border-color: rgba(200, 200, 220, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.age-gate-btn-no:active {
    transform: translateY(0);
}

.age-gate-btn-no .btn-icon {
    font-size: 1.1rem;
    font-weight: bold;
}

/* ============================================================
   SITE SHELL & PAGE WRAPPER
   ============================================================ */
#site-shell {
    display: none;
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0714 0%, #1a0a2e 25%, #2d1b4e 50%, #8b2a5c 75%, #0d0714 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(232,122,181,0.6), transparent),
        radial-gradient(1px 1px at 250px 150px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 350px 200px, rgba(123,75,179,0.7), transparent),
        radial-gradient(2px 2px at 400px 60px, rgba(255,255,255,0.6), transparent);
    background-size: 500px 300px;
    animation: starFloat 60s linear infinite;
    z-index: -1;
    opacity: 0.8;
}

@keyframes starFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-300px) translateX(-100px); }
}

/* ============================================================
   LAYOUT
   ============================================================ */
main {
    flex: 1;
    width: 100%;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.content-container {
    width: 100%;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   HEADER & BANNER
   ============================================================ */
.site-header {
    width: 100%;
    background: linear-gradient(180deg, var(--color-purple-dark) 0%, rgba(26,10,46,0.95) 100%);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-banner {
    height: var(--banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--color-purple-dark) 0%, var(--color-pink-dark) 50%, var(--color-purple-dark) 100%);
    background-size: 200% 100%;
    animation: bannerGlow 8s ease infinite;
    border-bottom: 1px solid var(--color-border);
}

@keyframes bannerGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.banner-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(232,122,181,0.5);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-pink-light);
}

.nav-logo a {
    color: inherit;
}

.nav-logo a:hover {
    color: var(--color-pink-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--button-border-radius);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-pink-glow);
    background-color: rgba(201,75,140,0.15);
}

.nav-link.active {
    color: var(--color-pink-light);
    background-color: rgba(201,75,140,0.2);
}

.nav-contact {
    color: var(--color-pink-light);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-search input {
    padding: 0.5rem 1rem;
    background-color: rgba(13,7,20,0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--button-border-radius);
    color: var(--color-text-primary);
    width: 180px;
    transition: all var(--transition-fast);
}

.nav-search input::placeholder {
    color: var(--color-text-muted);
}

.nav-search input:focus {
    outline: none;
    border-color: var(--color-pink-mid);
    box-shadow: 0 0 10px rgba(201,75,140,0.3);
}

.nav-search button {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-purple-accent) 0%, var(--color-pink-mid) 100%);
    border: none;
    border-radius: var(--button-border-radius);
    color: var(--color-text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nav-search button:hover {
    background: linear-gradient(135deg, var(--color-pink-mid) 0%, var(--color-pink-light) 100%);
    box-shadow: 0 0 15px rgba(201,75,140,0.4);
}

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
}

/* ============================================================
   CARD DESIGN
   ============================================================ */
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-card-hover);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.card-bow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.card-bow-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-pink-mid) 0%, var(--color-pink-light) 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(232,122,181,0.4);
    transition: all var(--transition-medium);
}

.card:hover .card-bow-placeholder {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(232,122,181,0.6);
}

.card-placeholders {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.card-actions {
    margin-top: auto;
    padding-top: 1rem;
    width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.buy-button, .btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--color-pink-mid) 0%, var(--color-pink-dark) 100%);
    border: none;
    border-radius: var(--button-border-radius);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(201,75,140,0.3);
}

.buy-button:hover, .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink-mid) 100%);
    box-shadow: 0 6px 20px rgba(232,122,181,0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--color-purple-accent);
    border-radius: var(--button-border-radius);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--color-purple-accent);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
}

.pagination-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.pagination-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-links a, .pagination-links span {
    padding: 0.5rem 0.75rem;
    min-width: 40px;
    text-align: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--button-border-radius);
    color: var(--color-text-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.pagination-links a:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    color: var(--color-pink-light);
}

.pagination-links .current {
    background: linear-gradient(135deg, var(--color-purple-accent) 0%, var(--color-pink-mid) 100%);
    border-color: var(--color-pink-mid);
}

.pagination-links .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-links .ellipsis {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    width: 100%;
    background: linear-gradient(180deg, rgba(26,10,46,0.95) 0%, var(--color-bg-dark) 100%);
    border-top: 1px solid var(--color-border);
    padding: 2rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    padding: 0.25rem 0.5rem;
}

.footer-links a:hover {
    color: var(--color-pink-light);
}

.footer-links .separator {
    color: var(--color-text-muted);
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    max-width: 800px;
    line-height: 1.5;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.footer-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-pink-light);
    text-shadow: 0 0 10px rgba(232,122,181,0.3);
}

/* ============================================================
   CATEGORY SELECTION
   ============================================================ */
.category-selection {
    text-align: center;
    padding: 2rem 0;
}

.category-selection-title {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.category-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--card-border-radius);
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: var(--color-text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-medium);
}

.category-card:hover {
    transform: translateY(-6px);
    background: var(--color-bg-card-hover);
    border-color: var(--color-pink-mid);
    box-shadow: var(--shadow-card-hover);
    color: var(--color-text-primary);
}

.category-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-purple-accent) 0%, var(--color-pink-mid) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(201,75,140,0.4);
    transition: all var(--transition-medium);
}

.category-card:hover .category-card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(232,122,181,0.6);
}

.category-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
}

.category-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ============================================================
   PORTAL & LEGAL PAGES
   ============================================================ */
.portal-header {
    text-align: center;
    padding: 2rem 0;
}

.portal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(232,122,181,0.3);
}

.portal-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--card-border-radius);
}

.legal-content h1 {
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--color-pink-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media screen and (max-width: 768px) {
    .main-nav {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    .nav-search {
        order: 2;
    }
    .nav-search input {
        width: 140px;
    }
    .category-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    .age-gate-panel {
        padding: 35px 30px;
    }
    .age-gate-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    .banner-title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-search {
        width: 100%;
        order: 3;
    }
    .nav-search input {
        flex: 1;
        width: auto;
    }
    .nav-links {
        order: 2;
    }
    .age-gate-panel {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .age-gate-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .age-gate-icon,
    .age-gate-icon-bottom {
        font-size: 1.4rem;
    }
    .age-gate-description {
        font-size: 0.9rem;
    }
    .age-gate-btn-yes,
    .age-gate-btn-no {
        padding: 14px 20px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.25rem;
    }
    .footer-links .separator {
        display: none;
    }
}

/* ============================================================
   PREVIEW MODAL & CARD PREVIEW
   ============================================================ */

/* Card Preview Block (inside each card) */
.card-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.preview-thumb {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.preview-thumb:hover {
    transform: scale(1.05);
    border-color: var(--color-pink-mid);
    box-shadow: 0 4px 16px rgba(201, 75, 140, 0.5);
}

.card:hover .preview-thumb {
    border-color: var(--color-border-hover);
    box-shadow: 0 4px 12px rgba(201, 75, 140, 0.3);
}

.preview-button {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--color-purple-accent) 0%, var(--color-pink-mid) 100%);
    border: none;
    border-radius: 20px;
    color: var(--color-text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(123, 75, 179, 0.3);
}

.preview-button:hover {
    background: linear-gradient(135deg, var(--color-pink-mid) 0%, var(--color-pink-light) 100%);
    box-shadow: 0 4px 15px rgba(201, 75, 140, 0.5);
    transform: translateY(-2px);
}

.preview-button:active {
    transform: translateY(0);
}

/* Preview Modal Overlay */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999998;
    padding: 20px;
}

.preview-modal.is-visible {
    display: flex;
}

/* Modal Backdrop (dark overlay) */
.preview-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    z-index: 1;
}

/* Modal Content Container */
.preview-modal-content {
    position: relative;
    background: linear-gradient(180deg, var(--color-purple-dark) 0%, #12121c 100%);
    border: 2px solid var(--color-pink-mid);
    border-radius: 12px;
    padding: 12px;
    width: auto;
    max-width: 500px;
    box-shadow: 
        0 0 30px rgba(201, 75, 140, 0.5),
        0 0 60px rgba(123, 75, 179, 0.3);
    z-index: 2;
}

/* Close Button */
.preview-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-pink-mid) 0%, var(--color-pink-dark) 100%);
    border: 2px solid var(--color-pink-light);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(201, 75, 140, 0.5);
    z-index: 3;
}

.preview-close:hover {
    background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink-mid) 100%);
    transform: scale(1.1);
}

/* Video Player */
.preview-modal-video {
    display: block;
    width: 100%;
    max-width: 476px;
    height: auto;
    border-radius: 6px;
    background: #000;
}

/* Disable right-click on video */
.preview-modal-video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

.preview-modal-video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

/* DESKTOP - larger screens */
@media screen and (min-width: 769px) {
    .preview-modal-content {
        max-width: 520px;
        padding: 14px;
    }
    
    .preview-modal-video {
        max-width: 492px;
    }
}

/* TABLET */
@media screen and (max-width: 768px) {
    .preview-modal {
        padding: 15px;
    }
    
    .preview-modal-content {
        max-width: 90vw;
        padding: 10px;
    }
    
    .preview-modal-video {
        max-width: 100%;
    }
    
    .preview-close {
        top: -12px;
        right: -12px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* MOBILE */
@media screen and (max-width: 480px) {
    .preview-modal {
        padding: 10px;
    }
    
    .preview-modal-content {
        max-width: 95vw;
        padding: 8px;
        border-radius: 10px;
    }
    
    .preview-modal-video {
        border-radius: 4px;
    }
    
    .preview-close {
        top: -10px;
        right: -10px;
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .preview-thumb {
        max-width: 150px;
    }
    
    .preview-button {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }
}
