/**
 * GaggedDrag Card Styles
 *
 * 5 Crown Jewel-exclusive card visual themes.
 * Each style modifies the base .queen-card via a modifier class.
 *
 * Themes: sparkle, pride, chill, sickening, charisma
 */


/* =============================================================================
   1. DIAMOND DIVA (sparkle) — Holographic shimmer, logo-inspired gradients
   ============================================================================= */

.queen-card.card-style-sparkle {
    background: linear-gradient(145deg, #0d0a1a 0%, #1a1a2e 40%, #12101f 100%);
    border: 1px solid rgba(255, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Holographic shimmer sweep */
.queen-card.card-style-sparkle::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 0, 255, 0.04) 38%,
        rgba(0, 255, 255, 0.06) 42%,
        rgba(255, 215, 0, 0.05) 46%,
        rgba(255, 0, 255, 0.04) 50%,
        transparent 58%
    );
    animation: sparkle-sweep 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle-sweep {
    0%   { transform: translateX(-25%) translateY(-25%) rotate(25deg); }
    50%  { transform: translateX(25%) translateY(25%) rotate(25deg); }
    100% { transform: translateX(-25%) translateY(-25%) rotate(25deg); }
}

/* Glitter sparkle dots via radial gradient */
.queen-card.card-style-sparkle::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 60% 15%, rgba(255,0,255,0.3), transparent),
        radial-gradient(1px 1px at 80% 60%, rgba(0,255,255,0.3), transparent),
        radial-gradient(1px 1px at 40% 80%, rgba(255,215,0,0.3), transparent),
        radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255,0,255,0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0,255,255,0.2), transparent),
        radial-gradient(1px 1px at 30% 10%, rgba(255,215,0,0.2), transparent),
        radial-gradient(1px 1px at 70% 90%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 15% 55%, rgba(255,0,255,0.2), transparent);
    animation: sparkle-twinkle 2s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 2;
}

@keyframes sparkle-twinkle {
    0%   { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.queen-card.card-style-sparkle:hover {
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow:
        0 0 15px rgba(255, 0, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.1),
        0 0 45px rgba(255, 215, 0, 0.05);
    transform: translateY(-3px);
}

.queen-card.card-style-sparkle:hover::after {
    animation-duration: 1.8s;
}

.queen-card.card-style-sparkle .queen-card-name a {
    background: linear-gradient(90deg, #FF00FF, #00FFFF, #FFD700, #FF00FF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sparkle-name 4s linear infinite;
}

@keyframes sparkle-name {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.queen-card.card-style-sparkle .queen-card-photo {
    border-bottom: 1px solid rgba(255, 0, 255, 0.15);
}

.queen-card.card-style-sparkle .queen-tag {
    background: rgba(255, 0, 255, 0.08);
    color: #e080ff;
    border: 1px solid rgba(255, 0, 255, 0.15);
}

.queen-card.card-style-sparkle .queen-tag:nth-child(2n) {
    background: rgba(0, 255, 255, 0.08);
    color: #80ffff;
    border-color: rgba(0, 255, 255, 0.15);
}

.queen-card.card-style-sparkle .queen-tag:nth-child(3n) {
    background: rgba(255, 215, 0, 0.08);
    color: #ffe066;
    border-color: rgba(255, 215, 0, 0.15);
}

.queen-card.card-style-sparkle .queen-btn-profile {
    background: linear-gradient(135deg, rgba(255,0,255,0.15), rgba(0,255,255,0.1));
    color: #e0a0ff;
    border: 1px solid rgba(255, 0, 255, 0.25);
}

.queen-card.card-style-sparkle .queen-btn-profile:hover {
    background: linear-gradient(135deg, #FF00FF, #00FFFF);
    color: #000;
    text-shadow: none;
}

.queen-card.card-style-sparkle .queen-btn-book {
    background: rgba(255, 215, 0, 0.08);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.queen-card.card-style-sparkle .queen-btn-book:hover {
    background: #FFD700;
    color: #0d0d1a;
}

.queen-card.card-style-sparkle .queen-card-location {
    color: #b080e0;
}

.queen-card.card-style-sparkle .queen-card-tagline {
    color: rgba(0, 255, 255, 0.5);
}

.queen-card.card-style-sparkle .tier-badge {
    background: linear-gradient(135deg, rgba(255,0,255,0.2), rgba(0,255,255,0.15));
    color: #e0c0ff;
    text-shadow: 0 0 6px rgba(255, 0, 255, 0.3);
}

.queen-card.card-style-sparkle .social-link {
    color: #c080e0;
    background: rgba(255, 0, 255, 0.06);
}

.queen-card.card-style-sparkle .social-link:hover {
    background: rgba(255, 0, 255, 0.2);
    color: #ff80ff;
}


/* =============================================================================
   2. PROUD QUEEN (pride) — Full LGBTQ+ rainbow, vibrant, celebratory
   ============================================================================= */

.queen-card.card-style-pride {
    background: #0d0d1a;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

/* Animated rainbow border */
.queen-card.card-style-pride::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(
        var(--pride-angle, 0deg),
        #E40303, #FF8C00, #FFED00, #008026, #24408E, #732982, #E40303
    );
    z-index: -1;
    animation: pride-rotate 6s linear infinite;
}

@property --pride-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes pride-rotate {
    to { --pride-angle: 360deg; }
}

/* Fallback for browsers without @property */
@supports not (background: paint(something)) {
    .queen-card.card-style-pride::before {
        background: linear-gradient(135deg, #E40303, #FF8C00, #FFED00, #008026, #24408E, #732982, #E40303);
        background-size: 400% 400%;
        animation: pride-shift 4s ease infinite;
    }
}

@keyframes pride-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle inner rainbow glow */
.queen-card.card-style-pride::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        rgba(228, 3, 3, 0.03) 0%,
        rgba(255, 140, 0, 0.03) 20%,
        rgba(255, 237, 0, 0.03) 40%,
        rgba(0, 128, 38, 0.03) 60%,
        rgba(36, 64, 142, 0.03) 80%,
        rgba(115, 41, 130, 0.03) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.queen-card.card-style-pride:hover {
    box-shadow:
        0 0 12px rgba(228, 3, 3, 0.15),
        0 0 24px rgba(255, 237, 0, 0.1),
        0 0 36px rgba(0, 128, 38, 0.1),
        0 0 48px rgba(115, 41, 130, 0.1);
    transform: translateY(-3px);
}

.queen-card.card-style-pride .queen-card-name a {
    background: linear-gradient(90deg, #E40303, #FF8C00, #FFED00, #008026, #24408E, #732982);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pride-text 5s linear infinite;
}

@keyframes pride-text {
    to { background-position: 200% center; }
}

.queen-card.card-style-pride .queen-card-photo {
    border-bottom: 2px solid rgba(255, 140, 0, 0.15);
}

/* Rainbow-alternating tags */
.queen-card.card-style-pride .queen-tag {
    background: rgba(228, 3, 3, 0.12);
    color: #ff6666;
    border: 1px solid rgba(228, 3, 3, 0.2);
}

.queen-card.card-style-pride .queen-tag:nth-child(2) {
    background: rgba(255, 140, 0, 0.12);
    color: #ffb366;
    border-color: rgba(255, 140, 0, 0.2);
}

.queen-card.card-style-pride .queen-tag:nth-child(3) {
    background: rgba(255, 237, 0, 0.12);
    color: #fff066;
    border-color: rgba(255, 237, 0, 0.2);
}

.queen-card.card-style-pride .queen-tag:nth-child(4) {
    background: rgba(0, 128, 38, 0.12);
    color: #66cc80;
    border-color: rgba(0, 128, 38, 0.2);
}

.queen-card.card-style-pride .queen-tag:nth-child(5) {
    background: rgba(36, 64, 142, 0.12);
    color: #6680cc;
    border-color: rgba(36, 64, 142, 0.2);
}

.queen-card.card-style-pride .queen-tag:nth-child(6),
.queen-card.card-style-pride .queen-tag:nth-child(n+6) {
    background: rgba(115, 41, 130, 0.12);
    color: #cc66e0;
    border-color: rgba(115, 41, 130, 0.2);
}

.queen-card.card-style-pride .queen-btn-profile {
    background: linear-gradient(135deg, rgba(228,3,3,0.15), rgba(115,41,130,0.15));
    color: #ff8080;
    border: 1px solid rgba(228, 3, 3, 0.3);
}

.queen-card.card-style-pride .queen-btn-profile:hover {
    background: linear-gradient(135deg, #E40303, #FF8C00, #FFED00);
    color: #000;
    text-shadow: none;
}

.queen-card.card-style-pride .queen-btn-book {
    background: rgba(0, 128, 38, 0.1);
    color: #66cc80;
    border: 1px solid rgba(0, 128, 38, 0.25);
}

.queen-card.card-style-pride .queen-btn-book:hover {
    background: linear-gradient(135deg, #008026, #24408E);
    color: #fff;
}

.queen-card.card-style-pride .queen-card-location {
    color: #FF8C00;
}

.queen-card.card-style-pride .queen-card-tagline {
    color: rgba(115, 41, 130, 0.6);
}

.queen-card.card-style-pride .tier-badge {
    background: linear-gradient(90deg, #E40303, #FF8C00, #FFED00, #008026);
    color: #000;
    font-weight: 800;
}

.queen-card.card-style-pride .social-link {
    color: #ff8080;
}

.queen-card.card-style-pride .social-link:nth-child(2) { color: #ffb366; }
.queen-card.card-style-pride .social-link:nth-child(3) { color: #66cc80; }
.queen-card.card-style-pride .social-link:nth-child(4) { color: #6680cc; }

.queen-card.card-style-pride .social-link:hover {
    background: rgba(255, 140, 0, 0.15);
}

/* ── Pride card: readable text on hover (rainbow can obscure) ── */
.queen-card.card-style-pride:hover .queen-card-name a {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}
.queen-card.card-style-pride:hover .queen-card-bio,
.queen-card.card-style-pride:hover .queen-card-location,
.queen-card.card-style-pride:hover .queen-card-tags {
    opacity: 0.95;
}



/* =============================================================================
   3. LOW-KEY LEGEND (chill) — Soft, warm, muted, casual vibes
   ============================================================================= */

.queen-card.card-style-chill {
    background: linear-gradient(170deg, #1c1917 0%, #1a1816 100%);
    border: 1px solid rgba(180, 140, 100, 0.1);
    border-radius: 18px;
}

.queen-card.card-style-chill:hover {
    border-color: rgba(200, 165, 120, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.queen-card.card-style-chill .queen-card-photo {
    border-radius: 18px 18px 0 0;
}

.queen-card.card-style-chill .queen-card-name a {
    color: #f0e6d8;
    font-weight: 600;
}

.queen-card.card-style-chill .queen-card-tagline {
    color: rgba(200, 170, 140, 0.5);
}

.queen-card.card-style-chill .queen-card-bio {
    color: rgba(200, 180, 160, 0.65);
}

/* Pill-shaped soft tags */
.queen-card.card-style-chill .queen-tag {
    background: rgba(180, 140, 100, 0.08);
    color: rgba(210, 180, 150, 0.7);
    border: none;
    border-radius: 12px;
    padding: 3px 10px;
}

.queen-card.card-style-chill .queen-tag:nth-child(2n) {
    background: rgba(130, 160, 120, 0.08);
    color: rgba(170, 200, 160, 0.7);
}

.queen-card.card-style-chill .queen-tag:nth-child(3n) {
    background: rgba(160, 130, 170, 0.08);
    color: rgba(190, 165, 200, 0.7);
}

.queen-card.card-style-chill .queen-btn-profile {
    background: rgba(180, 140, 100, 0.1);
    color: #c8a882;
    border: 1px solid rgba(180, 140, 100, 0.12);
    border-radius: 12px;
}

.queen-card.card-style-chill .queen-btn-profile:hover {
    background: #c8a882;
    color: #1c1917;
}

.queen-card.card-style-chill .queen-btn-book {
    background: rgba(140, 160, 130, 0.08);
    color: #98b090;
    border: 1px solid rgba(140, 160, 130, 0.1);
    border-radius: 12px;
}

.queen-card.card-style-chill .queen-btn-book:hover {
    background: #98b090;
    color: #1c1917;
}

.queen-card.card-style-chill .queen-card-location {
    color: #b89870;
}

.queen-card.card-style-chill .tier-badge {
    background: rgba(180, 140, 100, 0.12);
    color: #c8a882;
    border-radius: 12px;
}

.queen-card.card-style-chill .queen-card-photo {
    border-bottom: none;
}

.queen-card.card-style-chill .social-link {
    color: #b89870;
    background: rgba(180, 140, 100, 0.06);
    border-radius: 10px;
}

.queen-card.card-style-chill .social-link:hover {
    background: rgba(180, 140, 100, 0.18);
    color: #d8c0a0;
}


/* =============================================================================
   4. SICKENING! (sickening) — Main stage drama, magenta/gold, spotlight
   ============================================================================= */

.queen-card.card-style-sickening {
    background: linear-gradient(170deg, #1a0020 0%, #1a1a2e 50%, #200015 100%);
    border: 2px solid #FF00FF;
    position: relative;
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.15), inset 0 0 40px rgba(255, 0, 255, 0.03);
}

/* Spotlight radial glow */
.queen-card.card-style-sickening::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(255,0,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.queen-card.card-style-sickening:hover {
    border-color: #ff40ff;
    box-shadow:
        0 0 20px rgba(255, 0, 255, 0.35),
        0 0 40px rgba(255, 0, 255, 0.15),
        0 0 60px rgba(255, 215, 0, 0.05),
        inset 0 0 50px rgba(255, 0, 255, 0.05);
    transform: translateY(-4px);
}

.queen-card.card-style-sickening .queen-card-name a {
    color: #FF00FF;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.4), 0 0 30px rgba(255, 0, 255, 0.15);
}

.queen-card.card-style-sickening .queen-card-tagline {
    color: rgba(255, 215, 0, 0.5);
    font-weight: 600;
}

.queen-card.card-style-sickening .queen-card-photo {
    border-bottom: 2px solid rgba(255, 0, 255, 0.25);
}

.queen-card.card-style-sickening .queen-tag {
    background: rgba(255, 0, 255, 0.12);
    color: #ff66ff;
    border: 1px solid rgba(255, 0, 255, 0.25);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.queen-card.card-style-sickening .queen-btn-profile {
    background: linear-gradient(135deg, #FF00FF, #cc00cc);
    color: #fff;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.queen-card.card-style-sickening .queen-btn-profile:hover {
    background: linear-gradient(135deg, #ff40ff, #FF00FF);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.queen-card.card-style-sickening .queen-btn-book {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.queen-card.card-style-sickening .queen-btn-book:hover {
    background: #FFD700;
    color: #0d0d1a;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.queen-card.card-style-sickening .queen-card-location {
    color: #ff80ff;
}

.queen-card.card-style-sickening .tier-badge {
    background: linear-gradient(135deg, #FF00FF, #FFD700);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
}

.queen-card.card-style-sickening .social-link {
    color: #ff66ff;
    background: rgba(255, 0, 255, 0.08);
    border: 1px solid rgba(255, 0, 255, 0.15);
}

.queen-card.card-style-sickening .social-link:hover {
    background: rgba(255, 0, 255, 0.25);
    color: #ff99ff;
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
}


/* =============================================================================
   5. C.U.N.T. (charisma) — Deep purple, electric lime, sharp & edgy
   ============================================================================= */

.queen-card.card-style-charisma {
    background: linear-gradient(145deg, #0f0520 0%, #1a1a2e 40%, #120830 100%);
    border: 1px solid rgba(57, 255, 20, 0.2);
    position: relative;
}

/* Electric edge glow */
.queen-card.card-style-charisma::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(57,255,20,0.25), rgba(150,0,255,0.25), rgba(57,255,20,0.25));
    z-index: -1;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.queen-card.card-style-charisma:hover::before {
    opacity: 0.8;
}

.queen-card.card-style-charisma:hover {
    box-shadow:
        0 0 15px rgba(57, 255, 20, 0.15),
        0 0 30px rgba(150, 0, 255, 0.1);
    transform: translateY(-3px);
}

.queen-card.card-style-charisma .queen-card-name a {
    background: linear-gradient(90deg, #39FF14, #9600FF, #39FF14);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: charisma-name 6s linear infinite;
    font-weight: 800;
}

@keyframes charisma-name {
    to { background-position: 200% center; }
}

.queen-card.card-style-charisma .queen-card-tagline {
    color: rgba(150, 0, 255, 0.5);
}

.queen-card.card-style-charisma .queen-card-photo {
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.queen-card.card-style-charisma .queen-tag {
    background: rgba(57, 255, 20, 0.08);
    color: #60ff40;
    border: 1px solid rgba(57, 255, 20, 0.15);
}

.queen-card.card-style-charisma .queen-tag:nth-child(2n) {
    background: rgba(150, 0, 255, 0.08);
    color: #b366ff;
    border-color: rgba(150, 0, 255, 0.15);
}

.queen-card.card-style-charisma .queen-btn-profile {
    background: rgba(57, 255, 20, 0.1);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.25);
    font-weight: 700;
}

.queen-card.card-style-charisma .queen-btn-profile:hover {
    background: #39FF14;
    color: #0d0d1a;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.queen-card.card-style-charisma .queen-btn-book {
    background: rgba(150, 0, 255, 0.08);
    color: #b366ff;
    border: 1px solid rgba(150, 0, 255, 0.2);
}

.queen-card.card-style-charisma .queen-btn-book:hover {
    background: #9600FF;
    color: #fff;
    box-shadow: 0 0 10px rgba(150, 0, 255, 0.3);
}

.queen-card.card-style-charisma .queen-card-location {
    color: #8040d0;
}

.queen-card.card-style-charisma .queen-card-bio {
    color: rgba(180, 160, 210, 0.7);
}

.queen-card.card-style-charisma .tier-badge {
    background: linear-gradient(135deg, rgba(57,255,20,0.15), rgba(150,0,255,0.2));
    color: #80ff60;
    text-shadow: 0 0 6px rgba(57, 255, 20, 0.3);
}

.queen-card.card-style-charisma .social-link {
    color: #39FF14;
    background: rgba(57, 255, 20, 0.06);
}

.queen-card.card-style-charisma .social-link:hover {
    background: rgba(57, 255, 20, 0.2);
    color: #80ff60;
}


/* =============================================================================
   CARD STYLE PICKER — Queen Studio Theme Selector
   ============================================================================= */

.card-style-picker {
    padding: 1.5rem 0;
}

.card-style-picker-header {
    margin-bottom: 1.25rem;
}

.card-style-picker h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
    font-weight: 800;
}

.card-style-picker-sub {
    color: var(--gd-text-secondary, #A0A0A0);
    font-size: 0.82rem;
    margin: 0;
    font-style: italic;
}

.card-style-picker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .card-style-picker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .card-style-picker-grid {
        grid-template-columns: 1fr;
    }
}

.card-style-option {
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.015);
}

.card-style-option:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
}

.card-style-option.selected {
    border-color: var(--gd-magenta, #ff00ff);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.25);
    background: rgba(255, 0, 255, 0.04);
}

.card-style-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.card-style-option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.card-style-option-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-style-option-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    flex-shrink: 0;
}

.card-style-option.selected .card-style-option-check {
    border-color: var(--gd-magenta, #ff00ff);
    background: var(--gd-magenta, #ff00ff);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
}

.card-style-option.selected .card-style-option-check::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.card-style-preview {
    pointer-events: none;
    transform: scale(0.9);
    transform-origin: top center;
}

.card-style-preview .queen-card {
    font-size: 0.82em;
}

.card-style-option-desc {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.4;
}

.card-style-saved-msg {
    text-align: center;
    color: var(--gd-magenta, #FF00FF);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 10px;
    background: rgba(255, 0, 255, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 255, 0.15);
}
