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

body {
    font-family: 'Indie Flower', cursive;
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f8f8 100%);
    color: #4a4a4a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

header {
    text-align: center;
    margin-top: 10px;
}

h1 {
    font-family: 'Schoolbell', cursive;
    font-size: 3.5rem;
    color: #7ab8c8;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(122, 184, 200, 0.2);
}

.subtitle {
    font-size: 2rem;
    color: #6a6a6a;
    margin-top: 10px;
}

.gallery {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 700px;
    margin: 10px 0;
}

.collage-image {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(122, 184, 200, 0.35);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease-out,
                z-index 0s;
    object-fit: cover;
    transform-origin: center center;
}

.collage-image:hover {
    z-index: 10;
    box-shadow: 0 14px 45px rgba(122, 184, 200, 0.55);
}

/* Usagi_2: Headshot yelling - centered feature art filling the gallery */
.usagi-2 {
    height: 90%;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.usagi-2:hover {
    transform: translate(-50%, -50%) scale(1.03);
}

.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

.links-title {
    font-family: 'Schoolbell', cursive;
    font-size: 2.5rem;
    color: #7ab8c8;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.link-button {
    background: linear-gradient(135deg, #b8d4e3 0%, #a8d5e2 100%);
    color: #4a4a4a;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(168, 213, 226, 0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(122, 184, 200, 0.6);
    background: linear-gradient(135deg, #a8d5e2 0%, #98c5d2 100%);
    color: #3a3a3a;
}

.link-button:active {
    transform: translateY(-1px);
}

.credits {
    margin-top: 10px;
    padding: 20px;
    text-align: center;
    color: #6a6a6a;
    font-size: 0.9rem;
}

.credits a {
    color: #7ab8c8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: #6aa8b8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 12px;
    }

    .container {
        gap: 8px;
    }

    header {
        margin-top: 4px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .links-title {
        font-size: 1.5rem;
    }

    .gallery {
        height: 400px;
        max-width: 100%;
        margin: 4px 0;
    }

    .collage-image {
        position: absolute;
    }

    /* Scale down feature art for mobile */
    .usagi-2 {
        height: 90%;
        width: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .usagi-2:hover {
        transform: translate(-50%, -50%) scale(1.03);
    }

    .links-section {
        margin: 4px 0;
        gap: 12px;
    }

    .link-button {
        padding: 14px 22px;
        font-size: 1.05rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .credits {
        margin-top: 4px;
        padding: 12px;
        font-size: 0.85rem;
    }
}