:root {
    --gold-primary: #ffffff;
    --gold-dark: #ffffff;
    --text-grey: #ffffff;
    --bg-dark: #050505;
    --bg-footer: #081b24; 
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

.ps-scope {
    position: relative;
    z-index: 999999;
}

.ps-scope .ps-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999999;
}

.ps-scope .ps-overlay.ps-show {
    display: flex;
    animation: ps-fadeIn 0.4s ease-out;
}

@keyframes ps-fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Container Principal */
.ps-scope .ps-popup {
    width: 800px;
    max-width: 95vw;
    background: var(--bg-dark);
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

/* HEADER */
.ps-scope .ps-popup__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: linear-gradient(90deg, #0c2c37, #020202);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-scope .ps-popup__title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-title);
    color: var(--gold-primary);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Badge-ul Galben (Coming Soon) */
.ps-tag-yellow {
    background-color: #FFC107;
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.ps-scope .ps-btn-icon {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}
.ps-scope .ps-btn-icon:hover { color: #fff; }

/* CORPUL (Content Area) - Fara Imagine, Doar CSS */
.ps-scope .ps-content-area {
    position: relative;
    width: 100%;
    height: 350px; /* Inaltime fixa pentru aspect */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* GRILA DE PUNCTE (Pure CSS) */
.ps-dots-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#444 1.5px, transparent 1.5px);
    background-size: 20px 20px; /* Distanta puncte */
    opacity: 0.5;
    z-index: 1;
}

/* Textul Central */
.xmas-text-layer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.xmas-main-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    /* Gradient Auriu */
    background: linear-gradient(to bottom, #FFF 10%, #FFD700 50%, #B8860B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    letter-spacing: 2px;
}

.xmas-sub-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: #00FFFF; /* Cyan */
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* FOOTER (Descriere + Butoane) */
.ps-scope .ps-popup__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--bg-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.xmas-footer-desc {
    color: var(--text-grey);
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 60%;
    text-align: left;
}

.ps-action-group {
    display: flex;
    gap: 15px;
}

/* Stil Butoane */
.ps-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}
.ps-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: #666; }

.xmas-action-btn {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
}
.xmas-action-btn:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .ps-scope .ps-popup__actions { flex-direction: column; gap: 20px; text-align: center; }
    .xmas-footer-desc { max-width: 100%; text-align: center; }
    .ps-scope .ps-action-group { width: 100%; justify-content: center; }
    .xmas-main-title { font-size: 2.2rem; }
    .ps-scope .ps-popup { height: auto; }
}

:root {
    --bg-deep: #070b12;
    --bg-panel: rgba(10, 18, 28, 0.72);
    --gold-primary: #e8d08a;
    --gold-bright: #ffe39f;
    --gold-dark: rgba(232, 208, 138, 0.55);
    --primary-purple: #66e3ff;
    --primary-purple-hover: #a9f3ff;
    --border-color: rgba(232, 208, 138, 0.22);
    --text-main: rgba(245, 248, 255, 0.92);
    --text-light: rgba(245, 248, 255, 0.92);
    --text-medium: rgba(245, 248, 255, 0.62);
    --card-bg: linear-gradient(160deg, rgba(10, 18, 28, 0.92) 0%, rgba(5, 10, 18, 0.86) 100%);
    --danger-red: #ff2d55;
    --danger-red-2: #ff3b30;
    --danger-glow: rgba(255, 45, 85, 0.55);
    --danger-glow-soft: rgba(255, 45, 85, 0.22);
}

.ps-scope .ps-popup {
    border-color: rgba(255, 45, 85, 0.22);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.72), 0 0 35px var(--danger-glow-soft);
}

.ps-tag-yellow {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.92), rgba(255, 59, 48, 0.72));
    color: #0b0f17;
    box-shadow: 0 0 18px var(--danger-glow-soft);
}

.xmas-main-title {
    background: linear-gradient(to bottom, #FFF 10%, rgba(255, 45, 85, 0.92) 55%, rgba(255, 59, 48, 0.72) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 22px rgba(255, 45, 85, 0.25));
}

.xmas-sub-title {
    color: rgba(255, 45, 85, 0.92);
    text-shadow: 0 0 12px rgba(255, 45, 85, 0.35);
}

.xmas-action-btn {
    border-color: rgba(255, 45, 85, 0.65);
    color: rgba(255, 45, 85, 0.92);
}

.xmas-action-btn:hover {
    background: var(--danger-red);
    box-shadow: 0 0 30px rgba(255, 45, 85, 0.25);
}