* {
    box-sizing: border-box;
}

body {
    margin: 2em auto;
    max-width: 900px;
    font-family: ui-sans-serif, system-ui, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

.home-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #1e1e1e;
    padding: 0.5rem 1rem;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.home-button {
    color: #90caf9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid #333;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.home-button:hover {
    background-color: #90caf9;
    color: #121212;
    transform: translateY(-2px);
}

.page-cover-image {
    width: 100%;
    max-height: 30vh;
    object-fit: cover;
    filter: brightness(0.75);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0 2rem 0;
    color: #ffffff;
    text-align: center;
}

.column-list {
    display: flex;
    gap: 2rem;
}

.column-small {
    width: 40%;
}

.column-large {
    width: 60%;
}

.source {
    border: 1px solid #333;
    border-radius: 6px;
    padding: 1.2rem;
    background-color: #1e1e1e;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.source iframe {
    border-radius: 6px;
}

.collection-title {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

a {
    color: #90caf9;
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.card {
    position: relative;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0.4rem 0;
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    font-weight: 600;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}


@media (min-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 1024px) {
    .column-list {
        flex-direction: column;
    }

    .column-small,
    .column-large {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .card {
        height: 260px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}


@media (max-width: 480px) {
    .card {
        height: 260px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

.map-again{
    width: 80%;
    height: 80%;
}
