/* PORN HUB VIBES — ORANGE #FF9900 + BLACK + WHITE */
:root {
    --ph-orange: #FF9900;
    --dark-bg: #111111;
    --header-bg: #000000;
}

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

body {
    background: var(--dark-bg);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* HEADER */
header {
    background: var(--header-bg);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--ph-orange);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 15px var(--ph-orange);
}

.logo .orange { color: var(--ph-orange); }

.nav-right { display: flex; align-items: center; gap: 25px; }

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link:hover { color: var(--ph-orange); transform: scale(1.05); }

.music-btn {
    background: var(--ph-orange);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
}

.music-btn:hover { background: #fff; }

/* VIDEO PLAYER (Plyr) */
.player-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.player-container {
    background: #000;
    border: 4px solid var(--ph-orange);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.4);
    position: relative;
}

.video-wrapper { position: relative; }

/* Plyr custom styling to match Pornhub vibe */
.plyr {
    width: 100% !important;
    border-radius: 0;
}

.plyr__controls {
    background: rgba(0, 0, 0, 0.85) !important;
}

.plyr__progress__buffer { background: var(--ph-orange) !important; }
.plyr__tooltip { background: var(--ph-orange) !important; color: #000 !important; }

/* Overlay */
.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    z-index: 10;
}

.views-badge {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.video-title {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* PREMIUM TEASER */
.premium-teaser {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.teaser-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.teaser-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.teaser-card:hover { transform: scale(1.05); }

.teaser-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.teaser-info {
    padding: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Membership box */
.membership-box {
    background: linear-gradient(180deg, #1a1a1a, #111);
    border: 3px solid var(--ph-orange);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membership-header { margin-bottom: 20px; }

.verified {
    background: #00FF00;
    color: #000;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 8px;
}

.membership-box h3 {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--ph-orange);
}

.membership-text {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #ddd;
}

.mint-btn {
    background: var(--ph-orange);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.mint-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* RECOMMENDED - 3x5 GRID */
.recommended-section {
    max-width: 1400px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--ph-orange);
    border-left: 6px solid var(--ph-orange);
    padding-left: 15px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.video-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.3);
}

.thumbnail { position: relative; aspect-ratio: 16 / 9; }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 153, 0, 0.9);
    color: #000;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
}

.video-card:hover .play-overlay { transform: translate(-50%, -50%) scale(1.15); }

.info { padding: 12px; }
.info h4 { font-size: 1.05rem; margin-bottom: 4px; color: #fff; }
.info p { font-size: 0.9rem; color: #aaa; }

/* FOOTER */
footer {
    background: #000;
    padding: 40px 20px 25px;
    text-align: center;
    border-top: 3px solid var(--ph-orange);
}

.footer-container p { margin-bottom: 10px; font-size: 1rem; }
.footer-links a { color: #ccc; text-decoration: none; margin: 0 8px; }
.footer-links a:hover { color: var(--ph-orange); }
.footer-crypto { font-size: 0.9rem; color: var(--ph-orange); font-weight: 700; letter-spacing: 1px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .teaser-container { grid-template-columns: 1fr; gap: 30px; }
    .recommended-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) { 
    .recommended-grid { grid-template-columns: repeat(3, 1fr); } 
}
@media (max-width: 600px) {
    .recommended-grid { grid-template-columns: repeat(2, 1fr); }
    .header-container { flex-direction: column; gap: 15px; }
    .logo { font-size: 2.2rem; }
}