/* Custom variables for a premium, tailored cyber-neon theme */
:root {
    --bg-dark: #0a0513;
    --bg-card: rgba(22, 14, 38, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --neon-pink: #ff007f;
    --neon-cyan: #00f0ff;
    --neon-purple: #9d00ff;
    --neon-yellow: #ffdd00;
    --neon-green: #39ff14;
    --neon-orange: #ff5e00;

    --neon-pink-glow: 0 0 10px #ff007f, 0 0 20px rgba(255, 0, 127, 0.3);
    --neon-cyan-glow: 0 0 10px #00f0ff, 0 0 20px rgba(0, 240, 255, 0.3);
    --neon-purple-glow: 0 0 10px #9d00ff, 0 0 20px rgba(157, 0, 255, 0.3);
    
    --font-heading: 'Orbitron', 'Russo One', 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: #f0f0f5;
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background grid effect */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

/* Floating soft light orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    top: -100px;
    left: -100px;
    animation: floatingOrb 15s infinite alternate ease-in-out;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-cyan);
    bottom: -150px;
    right: -100px;
    animation: floatingOrb 18s infinite alternate-reverse ease-in-out;
}
.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: floatingOrb 12s infinite alternate ease-in-out;
}

@keyframes floatingOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.15); }
}

/* App Container */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Floating Music Widget */
.music-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(15, 8, 30, 0.85);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--neon-cyan-glow);
    z-index: 100;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    direction: ltr; /* keep audio widget details standard left-to-right */
}
.music-widget:hover {
    transform: translateY(-3px) scale(1.02);
}
.tape-disc {
    font-size: 24px;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 3s linear infinite;
    animation-play-state: paused;
}
.music-widget.playing .tape-disc {
    animation-play-state: running;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.track-info {
    display: flex;
    flex-direction: column;
    font-size: 11px;
}
.track-title {
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.track-status {
    color: #888;
}
.music-btn {
    background: var(--neon-cyan);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}
.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}
.gang-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    padding: 6px 16px;
    border-radius: 4px;
    text-shadow: var(--neon-pink-glow);
    box-shadow: inset var(--neon-pink-glow), var(--neon-pink-glow);
    animation: pulseBorder 2.5s infinite ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
}
@keyframes pulseBorder {
    0%, 100% {
        box-shadow: inset 0 0 5px rgba(255, 0, 127, 0.2), 0 0 5px rgba(255, 0, 127, 0.2);
        opacity: 0.8;
    }
    50% {
        box-shadow: inset 0 0 15px rgba(255, 0, 127, 0.5), 0 0 15px rgba(255, 0, 127, 0.5);
        opacity: 1;
    }
}

.neon-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0;
}
.name-highlight {
    color: var(--neon-cyan);
    font-size: 84px;
    text-shadow: var(--neon-cyan-glow);
    animation: neonPulse 2s infinite ease-in-out;
}
@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px rgba(0, 240, 255, 0.2); }
    50% { text-shadow: 0 0 25px var(--neon-cyan), 0 0 40px rgba(0, 240, 255, 0.6); }
}

/* Glitch effect */
.glitch {
    position: relative;
    color: #fff;
    text-shadow: 3px 0 var(--neon-pink), -3px 0 var(--neon-cyan);
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    color: #ccc;
    text-align: center;
}
.text-neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
    font-weight: 700;
}

/* Button styles */
.btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6);
}
.btn-secondary {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--neon-cyan-glow);
}
.btn-secondary:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--neon-cyan);
}
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    animation: shine 3s infinite linear;
}
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Generic Section Styles */
.section {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title i {
    color: var(--neon-cyan);
}
.section-desc {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 30px;
}

/* Stats Section (Profile Card) */
.profile-card {
    position: relative;
    border-radius: 15px;
    padding: 24px;
    background: rgba(10, 5, 20, 0.8);
    border: 1px dashed var(--neon-purple);
    overflow: hidden;
}
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple));
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
}
.avatar-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    animation: rotateBorder 6s linear infinite;
    z-index: 1;
}
@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}
.avatar {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1c152a;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--neon-cyan);
    box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.3);
}
.status-badge {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 0 8px var(--neon-green);
}
.pulse-anim {
    animation: pulseBadge 1.5s infinite alternate ease-in-out;
}
@keyframes pulseBadge {
    from { opacity: 0.8; box-shadow: 0 0 4px var(--neon-green); }
    to { opacity: 1; box-shadow: 0 0 12px var(--neon-green); }
}

.profile-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.profile-meta h3 {
    font-family: 'Orbitron', var(--font-body);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}
.real-name {
    font-size: 16px;
    color: #bbb;
}
.role-badge {
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255, 0, 127, 0.3);
    background: rgba(255, 0, 127, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    align-self: flex-start;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.stat-row {
    display: grid;
    grid-template-columns: 200px 1fr 60px;
    align-items: center;
    gap: 15px;
}
.stat-label {
    font-size: 14px;
    color: #ddd;
    font-weight: 700;
}
.stat-bar-container {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-bar {
    height: 100%;
    border-radius: 10px;
    background-color: var(--bar-color);
    box-shadow: 0 0 8px var(--bar-color);
    position: relative;
    transition: width 1.5s ease-out;
}
.stat-value {
    font-family: 'Orbitron', var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.profile-footer {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}
.motto {
    font-style: italic;
    color: #8a7aa6;
}

/* Hobbies Section Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.showcase-card {
    background: rgba(15, 8, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.15);
}
.showcase-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #000;
}
.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.showcase-card:hover .showcase-img {
    transform: scale(1.08);
}
.showcase-img-container .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-shadow: var(--neon-pink-glow);
}
.showcase-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.showcase-body h3 {
    font-size: 20px;
    color: #fff;
}
.showcase-body p {
    font-size: 14px;
    color: #aaa;
    flex-grow: 1;
}
.specs {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #ddd;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-top: 5px;
}
.text-cyan { color: var(--neon-cyan); }
.text-pink { color: var(--neon-pink); }

/* Interactive Birthday Cake */
.cake-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
.cake {
    position: relative;
    width: 280px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plate {
    position: absolute;
    bottom: 0;
    width: 320px;
    height: 15px;
    background: linear-gradient(180deg, #3c2a5e, #1a1030);
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}
.layer {
    position: absolute;
    border-radius: 10px 10px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.layer-bottom {
    bottom: 12px;
    width: 250px;
    height: 65px;
    background: linear-gradient(to right, #351540, #5a195b, #351540);
    z-index: 2;
}
.layer-middle {
    bottom: 76px;
    width: 200px;
    height: 55px;
    background: linear-gradient(to right, #1b3d54, #2c6e8f, #1b3d54);
    z-index: 3;
}
.layer-top {
    bottom: 130px;
    width: 150px;
    height: 45px;
    background: linear-gradient(to right, #501d36, #8c2f5d, #501d36);
    z-index: 4;
}

/* Cream drips */
.dripping {
    position: absolute;
    bottom: 160px;
    width: 150px;
    height: 20px;
    z-index: 5;
    display: flex;
    justify-content: space-around;
}
.drip {
    width: 12px;
    height: 15px;
    background: #ff7ebb;
    border-radius: 0 0 10px 10px;
}
.drip-1 { height: 10px; }
.drip-2 { height: 16px; margin-top: -1px; }
.drip-3 { height: 8px; }
.drip-4 { height: 14px; }
.drip-5 { height: 11px; }

/* Candles Container */
.candles-container {
    position: absolute;
    bottom: 174px;
    width: 150px;
    height: 60px;
    z-index: 6;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
}
.candle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.candle:hover {
    transform: scale(1.1);
}
.candle-body {
    width: 10px;
    height: 35px;
    border-radius: 3px 3px 0 0;
    box-shadow: inset -2px 0 3px rgba(0,0,0,0.2);
}
.c-pink { background: linear-gradient(#ff007f, #b30059); }
.c-cyan { background: linear-gradient(#00f0ff, #008fa8); }
.c-yellow { background: linear-gradient(#ffdd00, #b39b00); }
.c-purple { background: linear-gradient(#9d00ff, #6200a0); }
.c-orange { background: linear-gradient(#ff5e00, #b34200); }

.candle-wick {
    width: 2px;
    height: 8px;
    background: #333;
}

/* Candle Flame */
.flame {
    position: absolute;
    top: -14px;
    width: 10px;
    height: 15px;
    background: linear-gradient(#ffdd00, #ff5e00);
    border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
    animation: flicker 0.6s infinite alternate ease-in-out;
    box-shadow: 0 0 10px #ffdd00, 0 0 20px #ff5e00;
    transform-origin: bottom center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
@keyframes flicker {
    0% { transform: scale(1) rotate(-2deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

/* Extinguished state */
.candle.extinguished .flame {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

/* Smoke puff when candle blown out */
.smoke {
    position: absolute;
    top: -20px;
    width: 8px;
    height: 8px;
    background: rgba(200, 200, 200, 0.4);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}
.candle.extinguished .smoke {
    animation: puff 1s ease-out forwards;
}
@keyframes puff {
    0% { transform: translateY(0) scale(0.5); opacity: 1; }
    50% { transform: translateY(-15px) scale(1.5); opacity: 0.5; filter: blur(1px); }
    100% { transform: translateY(-30px) scale(2); opacity: 0; filter: blur(3px); }
}

.cake-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.cake-message {
    font-size: 18px;
    color: var(--neon-cyan);
    text-shadow: var(--neon-cyan-glow);
    font-weight: 700;
    text-align: center;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 12px 24px;
    border-radius: 10px;
    max-width: 600px;
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Guestbook / Wishes Wall */
.wishes-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

/* Wish Form */
.wish-form {
    background: rgba(10, 5, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-group label i {
    color: var(--neon-pink);
}
.form-group input, 
.form-group textarea {
    font-family: var(--font-body);
    background: rgba(15, 8, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    resize: none;
}
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

.wish-form .btn:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.wish-form-message {
    min-height: 22px;
    margin: -6px 0 0;
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
}

.wish-form-message.success {
    color: var(--neon-green);
}

.wish-form-message.error {
    color: var(--neon-pink);
}

/* Color Picker radio buttons */
.color-picker {
    display: flex;
    gap: 15px;
}
.color-option {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
}
.color-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.color-option:hover .checkmark {
    transform: scale(1.1);
}
.color-option input:checked ~ .checkmark {
    border-color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 10px var(--color-glow);
}

.radio-pink { --color-glow: var(--neon-pink); }
.radio-pink .checkmark { background-color: rgba(255, 0, 127, 0.4); border-color: rgba(255, 0, 127, 0.7); }

.radio-cyan { --color-glow: var(--neon-cyan); }
.radio-cyan .checkmark { background-color: rgba(0, 240, 255, 0.4); border-color: rgba(0, 240, 255, 0.7); }

.radio-purple { --color-glow: var(--neon-purple); }
.radio-purple .checkmark { background-color: rgba(157, 0, 255, 0.4); border-color: rgba(157, 0, 255, 0.7); }

.radio-yellow { --color-glow: var(--neon-yellow); }
.radio-yellow .checkmark { background-color: rgba(255, 221, 0, 0.4); border-color: rgba(255, 221, 0, 0.7); }

/* Wishes Wall Notes */
.wishes-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-height: 520px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    background: rgba(0,0,0,0.15);
}

.wishes-empty {
    grid-column: 1 / -1;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #aaa;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(10, 5, 20, 0.35);
}

.wishes-empty.error {
    color: var(--neon-pink);
}

/* Custom scrollbar for wishes wall */
.wishes-wall::-webkit-scrollbar {
    width: 6px;
}
.wishes-wall::-webkit-scrollbar-track {
    background: transparent;
}
.wishes-wall::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.wishes-wall::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

/* Sticky Neon Note styling */
.wish-card {
    padding: 18px;
    border-radius: 8px;
    color: #fff;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-left: 4px solid var(--note-color);
    background: rgba(20, 15, 30, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    transition: all 0.3s ease;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.wish-card:hover {
    transform: translateY(-5px) scale(1.03) rotate(1deg) !important; /* overrides random JS rotation on hover */
    box-shadow: 0 8px 18px rgba(0,0,0,0.4), 0 0 10px var(--note-glow);
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.wish-card-text {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    word-break: break-word;
}
.wish-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    font-size: 11px;
}
.wish-card-sender {
    font-weight: 700;
    color: var(--note-color);
}
.wish-card-date {
    color: #777;
}

/* Note Color Classes */
.card-pink {
    --note-color: var(--neon-pink);
    --note-glow: rgba(255, 0, 127, 0.4);
    box-shadow: 0 2px 8px rgba(255, 0, 127, 0.1);
}
.card-cyan {
    --note-color: var(--neon-cyan);
    --note-glow: rgba(0, 240, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 240, 255, 0.1);
}
.card-purple {
    --note-color: var(--neon-purple);
    --note-glow: rgba(157, 0, 255, 0.4);
    box-shadow: 0 2px 8px rgba(157, 0, 255, 0.1);
}
.card-yellow {
    --note-color: var(--neon-yellow);
    --note-glow: rgba(255, 221, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 221, 0, 0.1);
}

/* Footer styling */
.app-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-logo {
    font-family: 'Orbitron', var(--font-body);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}
.text-neon-pink {
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
}
.copyright {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .wishes-layout {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 48px;
    }
    .name-highlight {
        font-size: 64px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 24px;
    }
    .stat-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .stat-value {
        text-align: right;
    }
    .hero {
        padding-top: 40px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .name-highlight {
        font-size: 48px;
    }
    .music-widget {
        bottom: 15px;
        left: 15px;
        max-width: calc(100% - 30px);
    }
}
