/* ============================================================
   LATIN EMPIRE X — LiveJasmin Affiliate Styles
   jasmin-affiliate.css
   ============================================================ */

:root {
    --gold-main: #d4af37;
    --gold-light: #f9d976;
    --border-gold: rgba(212, 175, 55, 0.3);
    --navy-dark: #060d1a;
    --jasmin-red: #ff2d55;
}

/* ---- Section Wrapper ---- */
.jasmin-live-section {
    background: linear-gradient(135deg, #060d1a 0%, #0a1628 50%, #060d1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.jasmin-live-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
}

/* ---- Section Label ---- */
.section-label {
    font-family: 'Cinzel', serif;
    color: var(--gold-main);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

/* Pulsing red LIVE dot */
.live-dot {
    width: 11px;
    height: 11px;
    background: var(--jasmin-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--jasmin-red);
    animation: pulseLiveDot 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseLiveDot {
    0%   { transform: scale(1);   opacity: 1;   box-shadow: 0 0 6px var(--jasmin-red); }
    50%  { transform: scale(1.5); opacity: 0.7; box-shadow: 0 0 18px var(--jasmin-red); }
    100% { transform: scale(1);   opacity: 1;   box-shadow: 0 0 6px var(--jasmin-red); }
}

/* ---- Iframe Container ---- */
#jasmin-embed-container {
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 0 30px rgba(212, 175, 55, 0.12),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.4s ease;
    background: #000;
    min-height: 300px;
}

#jasmin-embed-container:hover {
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 0 50px rgba(212, 175, 55, 0.25),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

#jasmin-embed-container iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
}

/* ---- CTA Button Area ---- */
.jasmin-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-gold-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #b8912a 0%, #d4af37 40%, #f9d976 60%, #d4af37 100%);
    color: #0a0a0a;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold-large:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
    text-decoration: none;
    color: #0a0a0a;
}

.btn-gold-large:active {
    transform: translateY(0);
}

/* ---- Watch Live Button (inline / small variant) ---- */
.btn-watch-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 45, 85, 0.15);
    color: #ff2d55;
    border: 1px solid rgba(255, 45, 85, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-watch-live:hover {
    background: rgba(255, 45, 85, 0.3);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.35);
    transform: translateY(-2px);
    color: #ff2d55;
    text-decoration: none;
}

.btn-watch-live .live-dot {
    width: 7px;
    height: 7px;
}

/* ---- Creator Spotlight Section (index.html) ---- */
.creator-spotlight-section {
    padding: 50px 0;
    margin: 30px 0;
}

.creator-spotlight-section .section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 2px;
}

.creator-spotlight-section .section-subtitle {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.creator-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.creator-spotlight-card {
    background: rgba(10, 8, 5, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(12px);
    position: relative;
}

.creator-spotlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-main);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.creator-card-banner {
    height: 100px;
    background: linear-gradient(135deg, #1a1400, #2d2100, #0a0a0a);
    position: relative;
    z-index: 1;
}

.creator-card-avatar {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--gold-main);
    object-fit: cover;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(212, 175, 55, 0.45);
    z-index: 2;
    background: #0a0a0a;
}

.creator-card-body {
    padding: 42px 15px 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.creator-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
}

.creator-card-handle {
    font-size: 0.75rem;
    color: var(--gold-main);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.creator-card-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.creator-card-footer {
    padding: 8px 14px 16px;
    position: relative;
    z-index: 5;
}

.creator-card-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(165deg, #12100a 0%, #1e1a10 45%, #12100a 100%);
    color: #f5ecd4 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    border: 2px solid #d4af37;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border-radius: 50px;
    margin: 0;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.12);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

.creator-card-btn .btn-main {
    display: block;
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff8eb !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.07em;
}

.creator-card-btn .btn-price {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: none;
    color: #d4af37 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
    opacity: 1;
}

.creator-card-btn:hover {
    transform: translateY(-2px);
    border-color: #f0d878;
    color: #fff8eb !important;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.creator-card-btn:hover .btn-main {
    color: #ffffff !important;
}

.creator-card-btn:hover .btn-price {
    color: #f5e6a8 !important;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .jasmin-live-section {
        padding: 25px 15px;
        margin: 25px 0;
        border-radius: 12px;
    }

    .section-label {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    #jasmin-embed-container {
        border-radius: 10px;
    }

    /* Responsive iframe — aspect-ratio trick for mobile */
    #jasmin-embed-container {
        position: relative;
        padding-bottom: 75%;
        height: 0;
        min-height: unset;
    }

    #jasmin-embed-container iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
    }

    .btn-gold-large {
        font-size: 0.85rem;
        padding: 14px 28px;
        letter-spacing: 1px;
    }

    .creator-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .creator-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .creator-card-btn {
        padding: 12px 10px;
    }

    .creator-card-btn .btn-main {
        font-size: 0.66rem;
        letter-spacing: 0.05em;
    }

    .creator-card-btn .btn-price {
        font-size: 0.62rem;
    }

    .creator-card-avatar {
        width: 52px;
        height: 52px;
        bottom: -26px;
    }

    /* CTA button: full width on very small screens */
    .btn-gold-large {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .jasmin-cta {
        padding: 0 8px;
    }

    /* Section label: wrap if needed */
    .section-label {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Iframe section: tighter padding */
    .jasmin-live-section {
        padding: 20px 12px;
        margin: 15px 0;
    }
}
