* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(120deg, #fbeff5, #e6d9f2);
    color: #2d1b3f;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #d4579f, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #2d1b3f;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d4579f, #9b59b6);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: rgba(212, 87, 159, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.title-animated {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d4579f 0%, #9b59b6 50%, #7b3ff2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideDown 0.8s ease-out;
    font-weight: 700;
    letter-spacing: -2px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out 0.2s both;
}

.btn-primary {
    margin-top: 15px;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #d4579f, #9b59b6);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 87, 159, 0.3);
    transition: all 0.3s ease;
    animation: slideDown 0.8s ease-out 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 87, 159, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* TIMELINE SECTION */
.timeline {
    padding: 80px 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 87, 159, 0.05));
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #d4579f, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
}

.card-header {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #fbeff5, #e6d9f2);
    position: relative;
    overflow: hidden;
}

.card-1 .card-header { background: linear-gradient(135deg, #f1b67a, #d4a574); }
.card-2 .card-header { background: linear-gradient(135deg, #87ceeb, #6ba8d4); }
.card-3 .card-header { background: linear-gradient(135deg, #4a4a6a, #2d2a4a); }
.card-4 .card-header { background: linear-gradient(135deg, #ff69b4, #ff1493); }

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.card h3 {
    margin: 25px 20px 10px 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d1b3f;
}

.card p {
    padding: 0 20px;
    color: #555;
    font-size: 0.95rem;
    opacity: 0.9;
}

.card-link {
    display: inline-block;
    margin: 20px;
    color: #d4579f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    border-bottom-color: #d4579f;
}

.card-link:hover {
    color: #9b59b6;
    border-bottom-color: #9b59b6;
    transform: translateX(5px);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* QUOTE SECTION */
.quote-section {
    padding: 80px 60px;
    text-align: center;
    background: rgba(212, 87, 159, 0.08);
    margin: 40px 60px;
    border-radius: 20px;
    border-left: 5px solid #d4579f;
}

blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d1b3f;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ALBUMS SECTION */
.albums-section {
    padding: 80px 60px;
    background: linear-gradient(to bottom, rgba(212, 87, 159, 0.05), transparent);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.album {
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.album-1 .album-cover { background: linear-gradient(135deg, #e6c9d4, #d9b5c7); }
.album-2 .album-cover { background: linear-gradient(135deg, #f1b67a, #d4a574); }
.album-3 .album-cover { background: linear-gradient(135deg, #b19cd9, #9966cc); }
.album-4 .album-cover { background: linear-gradient(135deg, #d9534f, #c9302c); }
.album-5 .album-cover { background: linear-gradient(135deg, #87ceeb, #6ba8d4); }
.album-6 .album-cover { background: linear-gradient(135deg, #2d2d44, #1a1a2e); }
.album-7 .album-cover { background: linear-gradient(135deg, #ff69b4, #ff1493); }
.album-8 .album-cover { background: linear-gradient(135deg, #8b7355, #6b5344); }
.album-9 .album-cover { background: linear-gradient(135deg, #8b4513, #654321); }
.album-10 .album-cover { background: linear-gradient(135deg, #4a4a6a, #2d2a4a); }
.album-11 .album-cover { background: linear-gradient(135deg, #b19cd9, #9966cc); }
.album-12 .album-cover { background: linear-gradient(135deg, #87ceeb, #6ba8d4); }

.album-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album:hover .album-cover::before {
    opacity: 1;
}

.album h3 {
    font-size: 1.1rem;
    color: #2d1b3f;
    margin-bottom: 5px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.year {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}

.era-tag {
    display: inline-block;
    background: rgba(212, 87, 159, 0.15);
    color: #d4579f;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.album:hover {
    transform: translateY(-15px);
}

.album:hover .album-cover {
    box-shadow: 0 20px 50px rgba(212, 87, 159, 0.3);
    transform: scale(1.05);
}

.album:hover h3 {
    color: #d4579f;
}

/* NOTES SECTION */
.notes-section {
    padding: 80px 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 87, 159, 0.05));
}

.btn-add-note {
    display: block;
    margin: 0 auto 40px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4579f, #9b59b6);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 87, 159, 0.3);
    transition: all 0.3s ease;
}

.btn-add-note:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 87, 159, 0.4);
}

.notes-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.note-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.note-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.note-album {
    display: inline-block;
    background: rgba(212, 87, 159, 0.15);
    color: #d4579f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.note-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d1b3f;
    margin-bottom: 10px;
}

.note-content {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.note-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
}

.note-actions {
    display: flex;
    gap: 10px;
}

.btn-edit, .btn-delete {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-edit {
    background: rgba(212, 87, 159, 0.2);
    color: #d4579f;
}

.btn-edit:hover {
    background: rgba(212, 87, 159, 0.3);
}

.btn-delete {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.btn-delete:hover {
    background: rgba(220, 53, 69, 0.3);
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
}

.empty-state p {
    font-size: 1.1rem;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(212, 87, 159, 0.1);
    padding-bottom: 15px;
}

.modal-header h3 {
    color: #2d1b3f;
    font-size: 1.3rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #d4579f;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d1b3f;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(212, 87, 159, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4579f;
}

.form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-save, .btn-cancel {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save {
    background: linear-gradient(135deg, #d4579f, #9b59b6);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 87, 159, 0.3);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 87, 159, 0.4);
}

.btn-cancel {
    background: rgba(0, 0, 0, 0.1);
    color: #2d1b3f;
}

.btn-cancel:hover {
    background: rgba(0, 0, 0, 0.15);
}
footer {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .title-animated {
        font-size: 2.5rem;
    }

    .timeline {
        padding: 60px 30px;
    }

    .cards {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .quote-section {
        margin: 40px 20px;
        padding: 40px 20px;
    }

    blockquote {
        font-size: 1.1rem;
    }

    .albums-section {
        padding: 60px 20px;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }

    .album h3 {
        font-size: 0.95rem;
    }

    .notes-section {
        padding: 60px 20px;
    }

    .notes-container {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
    }
}
