/* 18+ ADULT SECTION - NEON PEEP SHOW AESTHETIC */

:root {
    /* Neon peep show colors */
    --neon-pink: #ff0080;
    --neon-purple: #b300ff;
    --neon-blue: #00d9ff;
    --neon-red: #ff0044;
    --peep-glow-pink: rgba(255, 0, 128, 0.8);
    --peep-glow-purple: rgba(179, 0, 255, 0.6);
    --peep-dark: #0d0008;
    --peep-darker: #050003;
}

/* Adult Section Button - Token Slot Machine Vibe */
.adult-section-btn {
    position: relative;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    border: 2px solid var(--neon-pink);
    color: #fff;
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow:
        0 0 20px var(--peep-glow-pink),
        0 0 40px var(--peep-glow-purple),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: pulsePeep 2s ease-in-out infinite;
    border-radius: 4px;
}

.adult-section-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 30px var(--peep-glow-pink),
        0 0 60px var(--peep-glow-purple),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: var(--neon-purple);
}

.adult-section-btn::before {
    content: '18+';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon-red);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-red);
    animation: pulse18 1.5s ease-in-out infinite;
}

@keyframes pulsePeep {
    0%, 100% {
        box-shadow:
            0 0 20px var(--peep-glow-pink),
            0 0 40px var(--peep-glow-purple),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 30px var(--peep-glow-pink),
            0 0 60px var(--peep-glow-purple),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

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

/* Age Gate Modal - Peep Show Curtain */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: curtainOpen 0.5s ease-out;
}

@keyframes curtainOpen {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-gate-content {
    background: linear-gradient(135deg, var(--peep-darker) 0%, var(--peep-dark) 100%);
    border: 3px solid var(--neon-pink);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 0 60px var(--peep-glow-pink),
        0 0 100px var(--peep-glow-purple),
        inset 0 0 60px rgba(255, 0, 128, 0.1);
    position: relative;
    overflow: hidden;
}

.age-gate-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 0, 128, 0.1) 50%,
        transparent 70%
    );
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
    text-shadow:
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-purple);
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--neon-pink));
    }
    50% {
        filter: drop-shadow(0 0 40px var(--neon-purple));
    }
}

.age-gate-title {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 50%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.age-gate-subtitle {
    font-size: 16px;
    color: var(--neon-pink);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-warning {
    background: rgba(255, 0, 68, 0.1);
    border: 1px solid var(--neon-red);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

.age-gate-warning strong {
    color: var(--neon-pink);
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.age-gate-btn {
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-gate-btn-enter {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: #fff;
    box-shadow:
        0 0 20px var(--peep-glow-pink),
        0 4px 15px rgba(255, 0, 128, 0.4);
}

.age-gate-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 30px var(--peep-glow-pink),
        0 6px 20px rgba(255, 0, 128, 0.6);
}

.age-gate-btn-exit {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.age-gate-btn-exit:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Adult Content Grid - Neon Showcase */
.adult-content-section {
    margin-top: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg,
        rgba(255, 0, 128, 0.05) 0%,
        rgba(179, 0, 255, 0.05) 100%);
    border: 2px solid var(--neon-pink);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.adult-content-section::before {
    content: '18+';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-red);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-red);
    z-index: 10;
}

.adult-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.adult-section-title {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 40px var(--peep-glow-pink);
}

.adult-section-subtitle {
    font-size: 18px;
    color: var(--neon-pink);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.adult-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

/* Adult Book Card - Peep Show Window */
.adult-book-card {
    background: linear-gradient(135deg,
        rgba(255, 0, 128, 0.1) 0%,
        rgba(179, 0, 255, 0.1) 100%);
    border: 2px solid var(--neon-pink);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px rgba(255, 0, 128, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.adult-book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--neon-pink) 0%,
        var(--neon-purple) 50%,
        var(--neon-blue) 100%);
    animation: neonFlow 3s linear infinite;
}

@keyframes neonFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.adult-book-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-purple);
    box-shadow:
        0 0 40px rgba(255, 0, 128, 0.4),
        0 0 60px rgba(179, 0, 255, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .age-gate-content {
        padding: 30px 20px;
    }

    .age-gate-title {
        font-size: 32px;
    }

    .age-gate-icon {
        font-size: 60px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .adult-section-title {
        font-size: 36px;
    }

    .adult-books-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .adult-section-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .age-gate-title {
        font-size: 28px;
    }

    .adult-section-title {
        font-size: 28px;
    }

    .adult-books-grid {
        grid-template-columns: 1fr;
    }
}

/* Token Slot Machine Animation */
@keyframes slotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-300%); }
}

.adult-section-btn.spinning::after {
    content: '💎\A🔥\A💋\A✨';
    white-space: pre;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    animation: slotSpin 0.5s linear;
}
