:root {
    --rsvp-bg: rgba(255,255,255,0.05);
    --rsvp-text: #ffffff;
    --input-bg: rgba(255,255,255,0.1);
    --input-border: rgba(255,255,255,0.2);
    --input-text: #ffffff;
    --input-placeholder: rgba(255,255,255,0.6);
    --bg-dark: #070913;
    --bg-panel: #0d1124;
    --neon-blue: #00e5ff;
    --neon-purple: #7c4dff;
    --text-light: #e0f2f1;
    --border-color: rgba(0, 229, 255, 0.3);
    --cover-bg: linear-gradient(140deg, #212121 0%, #424242 45%, #000000 100%);
    --hero-bg: linear-gradient(140deg, #212121 0%, #424242 45%, #000000 100%);
    --footer-bg: linear-gradient(135deg, #424242 0%, #212121 100%);
    --surface-soft: rgba(0, 0, 0, 0.4);
    --line: rgba(255, 255, 255, 0.2);
}
/* Theme 15 - Jujutsu Neon */



body.theme-jujutsu {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    margin: 0;
    overflow-x: hidden;
}

/* Cursed Energy Background */
.cursed-energy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(124, 77, 255, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    z-index: -1;
}

.cursed-energy::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    animation: flow 20s linear infinite;
}

@keyframes flow {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

.theme-jujutsu h1, .theme-jujutsu h2, .theme-jujutsu h3, .neon-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-title {
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--neon-purple), 0 0 30px var(--neon-purple), 0 0 40px var(--neon-purple);
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.card-neon {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2), inset 0 0 10px rgba(124, 77, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.card-neon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.btn-neon {
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 12px 24px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2), inset 0 0 5px rgba(0, 229, 255, 0.2);
}

.btn-neon:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px var(--neon-blue), inset 0 0 10px var(--neon-blue);
}

/* Couple Cards */
.theme-jujutsu .couple-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.theme-jujutsu .couple-card {
    text-align: center;
    max-width: 320px;
    padding: 0;
}

.character-placeholder {
    width: 100%;
    height: 350px;
    position: relative;
}

.character-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) grayscale(0.2);
}

.frame-neon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: -60px auto 10px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple);
    overflow: hidden;
    background: var(--bg-dark);
}

.frame-neon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.couple-content {
    padding: 20px;
}

.role-neon {
    background: rgba(124, 77, 255, 0.2);
    border: 1px solid var(--neon-purple);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
}

/* Inputs */
.input-neon {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 4px;
    padding: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.input-neon:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* Overrides for base styles to fit dark theme */
.countdown-item { background: transparent; box-shadow: none; }
.event-card { text-align: center; }
.gallery-item { border: none; padding: 0; }
.gallery-item img { display: block; }
.footer { background: var(--bg-dark); border-top: 1px solid var(--border-color); margin-top: 40px; }





@media (max-width: 768px) {
    .couple-container, .event-container { gap: 20px !important; }
    .hero-names { font-size: 2.5rem !important; }
}
.gift-lead { color: #00e5ff !important; text-shadow: 0 0 10px rgba(0,229,255,0.5); font-weight: bold; }

.gift-card.card-neon { color: #fff; }
.gift-card.card-neon p { color: rgba(255,255,255,0.9) !important; }
