/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 40%, #0d0d2b 100%);
    color: #e0e0ff;
    min-height: 100vh;
    padding: 20px;
    background-attachment: fixed;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a1a;
}
::-webkit-scrollbar-thumb {
    background: #3a3a8a;
    border-radius: 10px;
}

/* ===== MUSIC CONTROL ===== */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.music-control button {
    background: rgba(26, 26, 62, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid #4a4a9a;
    color: #c0c0ff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 255, 0.2);
}

.music-control button:hover {
    background: #3a3a8a;
    transform: scale(1.05);
    box-shadow: 0 4px 30px rgba(50, 50, 200, 0.4);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 10px;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(100, 100, 200, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8888ff, #4444cc, #8888ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    font-size: 1.2rem;
    color: #8888cc;
    margin-top: 5px;
    font-style: italic;
}

.hero-pics {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #4444aa;
    box-shadow: 0 0 30px rgba(50, 50, 200, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 0 50px rgba(80, 80, 255, 0.5);
}

/* ===== STORY ===== */
.story {
    padding: 40px 0;
}

.story h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
    color: #aaaaff;
}

.story p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 0 5px;
}

.highlight {
    color: #88ccff;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(100, 150, 255, 0.3);
}

.quote-box {
    background: rgba(40, 40, 120, 0.3);
    border-left: 5px solid #6666dd;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-size: 1.5rem;
    font-style: italic;
    color: #bbbbff;
    text-align: center;
    backdrop-filter: blur(5px);
}

.proud-section {
    background: rgba(30, 30, 90, 0.3);
    padding: 30px;
    border-radius: 16px;
    margin-top: 35px;
    border: 1px solid rgba(100, 100, 200, 0.2);
    backdrop-filter: blur(5px);
}

.proud-section h3 {
    font-size: 1.8rem;
    color: #99ddff;
    margin-bottom: 15px;
    text-align: center;
}

.proud-section p {
    font-size: 1.1rem;
    text-align: center;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 40px 0;
}

.gallery h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: #aaaaff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #4444aa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 40px rgba(50, 50, 200, 0.4);
    border-color: #8888ff;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 30px 0 10px;
    border-top: 1px solid rgba(100, 100, 200, 0.15);
    color: #6666aa;
}

footer p {
    font-size: 1.1rem;
}

footer .tiny {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-img {
        width: 80px;
        height: 80px;
    }

    .quote-box {
        font-size: 1.1rem;
        padding: 15px;
    }

    .story p {
        font-size: 1rem;
    }

    .music-control button {
        padding: 6px 14px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}