/* ==========================================================================
   MyFirstOrgasm.pics - Realistic Video Player & Sleek Controls System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    --bg-dark: #07090e;
    --bg-card: rgba(15, 23, 42, 0.85);
    --border-gold: #f59e0b;
    --gold-glow: rgba(245, 158, 11, 0.4);
    --neon-pink: #ec008c;
    --neon-cyan: #00a6df;
    --matrix-green: #10b981;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(236, 0, 140, 0.15), transparent 70%),
        radial-gradient(circle at 100% 50%, rgba(245, 158, 11, 0.1), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(16, 185, 129, 0.1), transparent 50%);
    background-attachment: fixed;
    color: var(--text-light);
    font-family: 'Outfit', -apple-system, sans-serif;
    min-height: 100vh;
    position: relative;
}

.master-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px;
}

/* ⏳ Urgent Countdown Sticky Bar */
.sticky-countdown-bar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient(90deg, #dc2626, #b91c1c, #991b1b);
    color: #fff;
    padding: 10px 16px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.online-users {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.green-dot {
    width: 8px;
    height: 8px;
    background: var(--matrix-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--matrix-green);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* 2010s Retro Header */
.retro-header {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid #334155;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.brand-title h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, #f59e0b, #ec008c, #00a6df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-title p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.header-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-2010 {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold { border-color: var(--border-gold); color: var(--border-gold); box-shadow: 0 0 10px var(--gold-glow); }
.badge-pink { border-color: var(--neon-pink); color: var(--neon-pink); }
.badge-matrix { border-color: var(--matrix-green); color: var(--matrix-green); }

/* Section Titles */
.section-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title.gold { color: var(--border-gold); }
.section-title.matrix { color: var(--matrix-green); }
.section-title.pink { color: var(--neon-pink); }

/* ⭐ VIP SECTION */
.god-tier-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 0 35px var(--gold-glow);
}

.god-tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.god-tier-badge {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: #000;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.god-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.thumb-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.thumb-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.thumb-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* SINGLE SLEEK GLOWING PLAY BUTTON OVERLAY */
.play-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(15, 23, 42, 0.85);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-gold);
    font-size: 22px;
    box-shadow: 0 0 20px var(--gold-glow);
    transition: all 0.25s ease;
}

.thumb-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--border-gold);
    color: #000;
    box-shadow: 0 0 30px var(--border-gold);
}

.thumb-title {
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: block;
}

.thumb-meta {
    font-size: 11px;
    color: var(--text-muted);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-around;
}

/* 🎩 BLACK HAT SECTION */
.blackhat-vault {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid var(--matrix-green);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

/* 🏷️ 100 SEO TAGS MATRIX GRID */
.seo-tag-matrix {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.seo-tag-pill {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #a7f3d0;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.seo-tag-pill::before {
    content: "⚡";
    font-size: 10px;
    color: var(--border-gold);
}

.seo-tag-pill:hover {
    background: var(--matrix-green);
    color: #042f2e;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* 💬 LIVE COMMENTS SECTION */
.comments-container {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.comment-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    display: flex;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--border-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 14px;
    flex-shrink: 0;
}

.comment-body h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--border-gold);
    margin-bottom: 2px;
}

.comment-body p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.comment-time {
    font-size: 10px;
    color: var(--text-muted);
}

/* 🔞 18+ AGE VERIFICATION OVERLAY MODAL */
.age-modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.age-modal-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(236, 0, 140, 0.5);
    position: relative;
}

.btn-verify {
    background: linear-gradient(135deg, var(--neon-pink), #be185d);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(236, 0, 140, 0.4);
    transition: all 0.25s ease;
}

.btn-verify:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* 🎬 REALISTIC HTML5 VIDEO PLAYER SIMULATOR MODAL */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(14px);
    z-index: 99998;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    background: #0f172a;
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    width: 92%;
    max-width: 680px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 0 60px var(--gold-glow);
    position: relative;
}

.player-box {
    width: 100%;
    height: 280px;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}

/* Player Bottom Control Bar */
.player-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    gap: 12px;
}

.progress-track {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    width: 42%;
    background: var(--border-gold);
    box-shadow: 0 0 10px var(--border-gold);
    transition: width 0.3s ease;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(245, 158, 11, 0.2);
    border-top: 5px solid var(--border-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 14px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--border-gold);
    font-weight: 700;
}

.btn-skip {
    background: linear-gradient(135deg, var(--matrix-green), #059669);
    color: #042f2e;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.25s ease;
}

.btn-skip:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.footer-links {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    border-radius: 12px;
}

.footer-links a {
    color: #60a5fa;
    text-decoration: none;
    margin: 0 8px;
    line-height: 2;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .master-container { padding: 10px; }
    .retro-header { flex-direction: column; text-align: center; }
    .god-tier-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .thumb-card img { height: 120px; }
    .seo-tag-pill { padding: 6px 10px; font-size: 11px; }
}

@media (max-width: 480px) {
    .god-tier-grid { grid-template-columns: repeat(1, 1fr); }
}
