* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #0a0005;
    color: #eee;
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.heart {
    position: absolute;
    bottom: -50px;
    animation: floatUp linear forwards;
}
@keyframes floatUp {
    from { transform: translateY(0) rotate(0deg); opacity: 1; }
    to { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

#bg-stars {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    background: rgba(5, 0, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 138, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.logo { font-family: 'Playfair Display', serif; font-size: 22px; color: #ff6b8a; letter-spacing: 3px; }
nav ul { list-style: none; display: flex; gap: 25px; }
nav ul a { color: #aaa; text-decoration: none; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; }
nav ul a:hover { color: #ff6b8a; }
.burger { display: none; font-size: 24px; cursor: pointer; color: #ff6b8a; }

.section { position: relative; z-index: 10; padding: 100px 20px; }
.fullscreen { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.section-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; color: #ff6b8a; margin-bottom: 50px; }

.slideshow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; -webkit-background-size: cover; }
.slide.active { opacity: 1; }
.slideshow-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 0, 10, 0.65); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding-top: 60px; }
.pre-title { color: #ccc; font-size: 15px; letter-spacing: 2px; margin-bottom: 20px; text-transform: uppercase; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 72px; color: #fff; margin-bottom: 20px; animation: fadeInDown 1s ease; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-content h1 span { color: #ff6b8a; font-style: italic; }
.subtitle { color: #ddd; font-size: 18px; margin-bottom: 50px; min-height: 30px; }

.counter-box { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeInUp 1s ease 0.6s both; }
.counter-item { background: rgba(10, 0, 5, 0.6); border: 1px solid #ff6b8a; border-radius: 20px; padding: 25px 30px; min-width: 100px; text-align: center; backdrop-filter: blur(5px); transition: transform 0.3s; }
.counter-item:hover { transform: translateY(-5px); }
.counter-item span { display: block; font-family: 'Playfair Display', serif; font-size: 44px; color: #ff6b8a; }
.counter-item small { color: #aaa; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.scroll-btn { display: inline-block; color: #fff; border: 1px solid #fff; padding: 12px 35px; border-radius: 30px; text-decoration: none; font-size: 14px; letter-spacing: 1px; transition: 0.3s; animation: fadeInUp 1s ease 0.9s both; backdrop-filter: blur(5px); background: rgba(255,255,255,0.1); }
.scroll-btn:hover { background: #ff6b8a; border-color: #ff6b8a; }

.photo-strip { position: relative; z-index: 10; overflow: hidden; height: 160px; background: #050003; border-top: 1px solid #3d0020; border-bottom: 1px solid #3d0020; }
.photo-strip-inner { display: flex; gap: 10px; animation: stripScroll 60s linear infinite; width: max-content; height: 100%; align-items: center; padding: 10px 0; }
.strip-item { width: 200px; height: 140px; flex-shrink: 0; background-size: cover; background-position: center; border-radius: 10px; border: 1px solid #3d0020; transition: transform 0.3s; }
.strip-item:hover { transform: scale(1.05); }
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.music-bar { position: relative; z-index: 10; background: #0d0008; border-top: 1px solid #3d0020; border-bottom: 1px solid #3d0020; padding: 15px 20px; }
.music-bar-inner { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.music-label { font-family: 'Playfair Display', serif; color: #ff6b8a; font-size: 16px; text-align: center; }
.custom-player { display: flex; align-items: center; gap: 15px; background: rgba(255, 107, 138, 0.05); border: 1px solid #3d0020; border-radius: 50px; padding: 12px 20px; }
.play-btn { width: 44px; height: 44px; border-radius: 50%; background: #ff6b8a; border: none; color: #fff; font-size: 16px; cursor: pointer; flex-shrink: 0; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.play-btn:hover { background: #cc3366; transform: scale(1.1); }
.player-info { flex-grow: 1; display: flex; flex-direction: column; gap: 8px; }
.player-title { font-family: 'Playfair Display', serif; font-size: 14px; color: #ff6b8a; font-style: italic; }
.player-progress { width: 100%; height: 4px; background: #3d0020; border-radius: 2px; cursor: pointer; position: relative; }
.player-progress-fill { height: 100%; background: #ff6b8a; border-radius: 2px; width: 0%; transition: width 0.1s; pointer-events: none; }
.player-time { font-size: 12px; color: #888; flex-shrink: 0; }

.letter-wrap { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding-top: 60px; min-height: 400px; }
.letter-envelope { cursor: pointer; transition: transform 0.3s; }
.letter-envelope:hover { transform: scale(1.03); }
.letter-envelope-body { position: relative; width: 320px; height: 220px; }
.letter-envelope-flap { position: absolute; top: 0; left: 0; width: 0; height: 0; border-left: 160px solid transparent; border-right: 160px solid transparent; border-top: 110px solid #4d0040; transform-origin: top center; z-index: 5; transition: transform 0.8s ease; filter: drop-shadow(0 3px 6px rgba(255,107,138,0.3)); }
.letter-envelope-flap.open { transform: rotateX(180deg); }
.letter-envelope-front { position: absolute; width: 320px; height: 220px; background: linear-gradient(135deg, #2d0020, #3d0030); border-radius: 6px; border: 1px solid #ff6b8a; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 0 40px rgba(255, 107, 138, 0.2); }
.letter-envelope-front::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 0; border-left: 160px solid transparent; border-right: 160px solid transparent; border-bottom: 110px solid #3a0028; }
.letter-envelope-front::after { content: ''; position: absolute; bottom: 110px; left: 0; width: 0; height: 0; border-left: 160px solid transparent; border-right: 160px solid transparent; border-bottom: 110px solid #350025; }
.letter-envelope-to { font-family: 'Playfair Display', serif; font-size: 22px; color: #ff6b8a; font-style: italic; position: relative; z-index: 2; }
.letter-envelope-hint { font-size: 12px; color: #888; letter-spacing: 1px; text-transform: uppercase; position: relative; z-index: 2; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.real-letter { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 500; display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px); overflow-y: auto; transition: opacity 0.4s ease; }
.real-letter.open { display: flex; animation: fadeInLetter 0.5s ease; }
@keyframes fadeInLetter { from { opacity: 0; } to { opacity: 1; } }

.real-letter-inner {
    background: #0d0008;
    max-width: 550px;
    width: 90%;
    border-radius: 12px;
    padding: 50px 50px 40px;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 107, 138, 0.3), 0 0 120px rgba(255, 107, 138, 0.1);
    animation: letterUnfold 0.6s ease;
    border: 1px solid #ff6b8a;
    margin: 20px auto;
    background-image: repeating-linear-gradient(
        transparent,
        transparent 27px,
        rgba(255, 107, 138, 0.05) 27px,
        rgba(255, 107, 138, 0.05) 28px
    );
}
.real-letter-inner::before {
    content: '';
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    border: 1px solid rgba(255, 107, 138, 0.3);
    border-radius: 8px;
    pointer-events: none;
}
.real-letter-inner::after {
    content: '❤';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0005;
    color: #ff6b8a;
    font-size: 22px;
    padding: 0 10px;
}

@keyframes letterUnfold { from { transform: scaleY(0.3) translateY(-50px); opacity: 0; } to { transform: scaleY(1) translateY(0); opacity: 1; } }

.real-letter-photo { width: 60%; height: 180px; background-size: cover; background-position: center; border-radius: 8px; margin: 0 auto 25px; opacity: 0.9; display: block; }
.real-letter-date { font-family: 'Playfair Display', serif; font-size: 14px; color: #888; margin-bottom: 25px; text-align: right; }
.real-letter-greeting { font-family: 'Playfair Display', serif; font-size: 26px; color: #ff6b8a; font-style: italic; margin-bottom: 25px; min-height: 40px; }
.real-letter-body p { font-family: 'Playfair Display', serif; font-size: 17px; color: #ccc; line-height: 2.1; margin-bottom: 15px; font-style: italic; min-height: 30px; }
.real-letter-sign { font-family: 'Playfair Display', serif; font-size: 20px; color: #ff6b8a; font-style: italic; margin-top: 30px; text-align: right; line-height: 1.6; min-height: 30px; }
.letter-close-btn { display: block; margin: 25px auto 0; background: none; border: 1px solid #ff6b8a; color: #ff6b8a; padding: 8px 25px; border-radius: 20px; cursor: pointer; font-size: 13px; font-family: 'Raleway', sans-serif; transition: 0.3s; }
.letter-close-btn:hover { background: #ff6b8a; color: #0a0005; }
.typewrite::after, .typewrite-p::after, .typewrite-sign::after { content: '|'; animation: blink 0.7s infinite; color: #ff6b8a; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.timeline { display: flex; flex-direction: column; gap: 30px; max-width: 600px; margin: 0 auto; text-align: left; }
.timeline-item { display: flex; align-items: center; gap: 25px; background: rgba(255, 107, 138, 0.04); border: 1px solid #3d0020; border-radius: 16px; padding: 25px 30px; opacity: 0; transform: translateX(-30px); transition: all 0.7s ease; }
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-dot { font-size: 28px; }
.timeline-text h3 { font-family: 'Playfair Display', serif; color: #ff6b8a; margin-bottom: 5px; }
.timeline-text p { color: #888; font-size: 15px; }

.love-subtitle { color: #888; font-size: 16px; margin-bottom: 40px; font-style: italic; }
.love-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; }
.love-card { background: rgba(255, 107, 138, 0.05); border: 1px solid #3d0020; border-radius: 16px; padding: 25px 15px; text-align: center; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.love-card.visible { opacity: 1; transform: translateY(0); }
.love-card:hover { border-color: #ff6b8a; background: rgba(255, 107, 138, 0.1); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 107, 138, 0.15); }
.love-card-wide { grid-column: 1 / -1; background: rgba(255, 107, 138, 0.08) !important; border-color: #ff6b8a !important; }
.love-icon { font-size: 30px; margin-bottom: 10px; }
.love-card p { color: #ccc; font-size: 14px; line-height: 1.5; }
.love-card-wide p { font-family: 'Playfair Display', serif; font-size: 18px !important; color: #ff6b8a !important; font-style: italic; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.stat-card { background: rgba(255, 107, 138, 0.05); border: 1px solid #3d0020; border-radius: 20px; padding: 30px 20px; text-align: center; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:hover { border-color: #ff6b8a; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 107, 138, 0.15); }
.stat-card-wide { grid-column: 1 / -1; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 48px; color: #ff6b8a; margin-bottom: 10px; }
.stat-label { color: #888; font-size: 14px; letter-spacing: 1px; }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.plan-card { background: rgba(255, 107, 138, 0.05); border: 1px solid #3d0020; border-radius: 20px; padding: 35px 25px; text-align: center; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.plan-card.visible { opacity: 1; transform: translateY(0); }
.plan-card:hover { border-color: #ff6b8a; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 107, 138, 0.15); }
.plan-card-future { border-style: dashed; border-color: #5d0040; }
.plan-card-future:hover { border-color: #ff6b8a; border-style: solid; }
.plan-icon { font-size: 40px; margin-bottom: 15px; }
.plan-text { color: #ccc; font-size: 16px; line-height: 1.6; margin-bottom: 15px; }
.plan-check { font-size: 20px; }

.masonry { columns: 3; column-gap: 15px; }
.masonry-item { break-inside: avoid; margin-bottom: 15px; border-radius: 16px; overflow: hidden; border: 1px solid #3d0020; opacity: 0; transform: scale(0.95); transition: all 0.6s ease; cursor: pointer; }
.masonry-item.visible { opacity: 1; transform: scale(1); }
.masonry-item img { width: 100%; display: block; transition: transform 0.4s; }
.masonry-tall img { height: 400px; object-fit: cover; }
.masonry-item:hover img { transform: scale(1.03); }
.masonry-item:hover { border-color: #ff6b8a; box-shadow: 0 0 20px rgba(255,107,138,0.2); }

#lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 1000; align-items: center; justify-content: center; cursor: pointer; }
#lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 0 60px rgba(255, 107, 138, 0.3); }

footer { position: relative; z-index: 10; text-align: center; padding: 30px; color: #333; border-top: 1px solid #1a0010; font-size: 14px; }

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

#loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #050008; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 1.2s ease, visibility 1.2s ease; }
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#stars-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.loader-content { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10000; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.writing-svg { width: 500px; max-width: 90vw; overflow: visible; filter: drop-shadow(0 0 15px rgba(255, 107, 138, 0.6)); }
#writing-text { animation: writeText 3s ease forwards 0.5s; }
@keyframes writeText { from { stroke-dashoffset: 1000; fill: transparent; } 80% { stroke-dashoffset: 0; fill: transparent; } 100% { stroke-dashoffset: 0; fill: #ff6b8a; } }
.loader-heart { font-size: 40px; opacity: 0; animation: heartAppear 0.5s ease forwards 3s, heartBeat 1s ease infinite 3.5s; }
@keyframes heartAppear { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes heartBeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.loader-date { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-style: italic; font-weight: 300; color: #aaa; opacity: 0; animation: fadeInUp 0.8s ease forwards 3.2s; letter-spacing: 3px; }

/* Пульсирующий логотип */
.logo { animation: logoGlow 2s ease-in-out infinite; }
@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 107, 138, 0.5); }
    50% { text-shadow: 0 0 25px rgba(255, 107, 138, 1), 0 0 50px rgba(255, 107, 138, 0.5); }
}

/* Активный пункт меню */
nav ul a.active { color: #ff6b8a; position: relative; }
nav ul a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: #ff6b8a; box-shadow: 0 0 8px rgba(255, 107, 138, 0.8); }

.timeline-item-future { border-style: dashed; border-color: #5d0040; opacity: 0; background: rgba(255, 107, 138, 0.02); }
.timeline-item-future.visible { opacity: 1; transform: translateX(0); }
.timeline-item-future .timeline-dot { font-size: 32px; color: #ff6b8a; }
.timeline-item-future h3 { font-style: italic; }
.timeline-item-future p { font-style: italic; color: #666 !important; }

/* Места и события — masonry */
.places-grid-cards {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
}
.place-event-card {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    background: rgba(78, 205, 196, 0.04);
    border: 1px solid #0d2d2a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}
.place-event-card.visible { opacity: 1; transform: translateY(0); }
.place-event-card:hover { border-color: #4ecdc4; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(78, 205, 196, 0.15); }
.place-event-img-wrap { width: 100%; overflow: hidden; }
.place-event-img-wrap img { width: 100%; height: auto; object-fit: contain; display: block; transition: transform 0.4s; }
.place-event-card:hover .place-event-img-wrap img { transform: scale(1.05); }
.place-event-body { padding: 20px; }
.place-event-date { color: #4ecdc4; font-size: 12px; letter-spacing: 1px; margin-bottom: 8px; text-transform: uppercase; }
.place-event-title { font-family: 'Playfair Display', serif; font-size: 17px; color: #fff; margin-bottom: 8px; }
.place-event-desc { color: #888; font-size: 13px; line-height: 1.5; margin-bottom: 12px; }
.place-event-geo { display: inline-block; color: #4ecdc4; font-size: 12px; text-decoration: none; border: 1px solid #0d2d2a; padding: 5px 12px; border-radius: 20px; transition: 0.3s; }
.place-event-geo:hover { background: #4ecdc4; color: #050a0a; border-color: #4ecdc4; }

@media (max-width: 768px) {
    nav { padding: 12px 15px; }
    .burger { display: block; }
    nav ul { display: none; position: absolute; top: 55px; left: 0; right: 0; flex-direction: column; background: rgba(10, 0, 5, 0.98); padding: 20px; gap: 20px; border-bottom: 1px solid #3d0020; z-index: 200; }
    nav ul.open { display: flex; }
    nav ul a { font-size: 15px; }
    .hero-content { padding: 80px 15px 20px; }
    .hero-content h1 { font-size: 32px; }
    .pre-title { font-size: 12px; }
    .subtitle { font-size: 15px; margin-bottom: 30px; }
    .counter-box { gap: 10px; }
    .counter-item { padding: 12px 14px; min-width: 60px; }
    .counter-item span { font-size: 24px; }
    .counter-item small { font-size: 10px; }
    .scroll-btn { padding: 10px 25px; font-size: 13px; }
    .section { padding: 70px 15px; }
    .section-title { font-size: 24px; margin-bottom: 30px; }
    .real-letter-inner { padding: 35px 20px 25px; }
    .real-letter-greeting { font-size: 20px; }
    .real-letter-body p { font-size: 15px; }
    .real-letter-photo { width: 80%; height: 150px; }
    .love-subtitle { font-size: 14px; }
    .love-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .love-card { padding: 15px 10px; }
    .love-icon { font-size: 24px; }
    .love-card p { font-size: 12px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 12px; }
    .plans-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .plan-icon { font-size: 28px; }
    .plan-text { font-size: 13px; }
    .masonry { columns: 2; column-gap: 8px; }
    .masonry-item { margin-bottom: 8px; border-radius: 10px; }
    .masonry-tall img { height: 250px; }
    .photo-strip { height: 100px; }
    .strip-item { width: 130px; height: 85px; }
    .music-bar { padding: 12px 15px; }
    .timeline-item { padding: 15px; gap: 15px; }
    .timeline-dot { font-size: 22px; }
    .timeline-text h3 { font-size: 16px; }
    .writing-svg { width: 300px; }
    .loader-date { font-size: 22px; }
    .letter-envelope-body { width: 260px; height: 180px; }
    .letter-envelope-front { width: 260px; height: 180px; }
    .letter-envelope-flap { border-left-width: 130px; border-right-width: 130px; border-top-width: 90px; }
    .letter-envelope-front::before { border-left-width: 130px; border-right-width: 130px; border-bottom-width: 90px; }
    .letter-envelope-front::after { bottom: 90px; border-left-width: 130px; border-right-width: 130px; border-bottom-width: 90px; }
    .letter-envelope-to { font-size: 18px; }
    .places-grid-cards { max-width: 100%; }
    .place-event-img-wrap { height: auto; }
}

@media (max-width: 400px) {
    .hero-content h1 { font-size: 26px; }
    .love-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .masonry { columns: 1; }
    .counter-item { padding: 10px 12px; min-width: 55px; }
    .counter-item span { font-size: 20px; }
}

@supports (-webkit-touch-callout: none) {
    .fullscreen { min-height: -webkit-fill-available; }
    .slide { -webkit-background-size: cover; }
}
.music-tracks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}
.track-card {
    background: rgba(255, 107, 138, 0.05);
    border: 1px solid #3d0020;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.track-card:hover {
    border-color: #ff6b8a;
    box-shadow: 0 10px 30px rgba(255, 107, 138, 0.15);
}
.track-info {
    padding: 20px;
}
.track-artist {
    color: #ff6b8a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.track-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}
.track-link {
    display: inline-block;
    color: #ff6b8a;
    border: 1px solid #ff6b8a;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}
.track-link:hover {
    background: #ff6b8a;
    color: #0a0005;
}
/* Lightbox arrows */
.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 10, 15, 0.6);
    border: 1px solid rgba(255, 107, 138, 0.4);
    color: #ff6b8a;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(255, 107, 138, 0.2);
}
.lightbox-arrow:hover {
    background: rgba(255, 107, 138, 0.2);
    border-color: #ff6b8a;
    box-shadow: 0 0 30px rgba(255, 107, 138, 0.5);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(20, 10, 15, 0.6);
    border: 1px solid rgba(255, 107, 138, 0.4);
    color: #ff6b8a;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.lightbox-close:hover {
    background: rgba(255, 107, 138, 0.2);
    border-color: #ff6b8a;
    box-shadow: 0 0 20px rgba(255, 107, 138, 0.4);
    transform: scale(1.1);
}
