* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0e0e10;
    color: #f5f5f5;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

#hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: opacity 1.5s ease-in-out;
    opacity: 0;
    filter: blur(4px);
    animation: slowZoom 30s ease-in-out infinite;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


#hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Adjust opacity here */
    z-index: -1;
}

header h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeInDown 1.5s ease-out;
}

header p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    animation: fadeInUp 2s ease-out;
    padding: 0 1rem;
}
#game-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
    opacity: 0;
}

#cta-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 2.5s ease;
}

.cta-button {
        background-color: #9146FF;
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 700;
        transition: background-color 0.3s ease;
}

.cta-button:hover {
        background-color: #772ce8;
}

.cta-button.secondary {
        background-color: #2d2d2d;
}

.cta-button.secondary:hover {
        background-color: #444;
}

.welcome-banner {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    color: #bbb;
    animation: fadeInUp 2.5s ease;
}


@keyframes fadeInDown {
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
}

.about {
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;
}

.card {
    background: #1f1f23;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.card .content {
    padding: 1rem;
    padding-top: 0.5rem;
}

.socials {
    text-align: center;
}

.socials a {
    margin: 0 1rem;
    color: #9146ff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.socials a:hover {
    color: #ffffff;
}

#visit-message {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #aaa;
    font-size: 1rem;
}

#musicplayer {
    position: absolute;
    z-index: 10;
    color-scheme: dark;
    margin: 10px;
}

.embed-section {
    text-align: center;
}

.embed-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
}

#play-pause {
    z-index: 10;
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

#play-pause:hover {
    color: #9146ff;
}

@media screen and (max-width: 750px) {
    .welcome-banner {
        bottom: 90px;
    }


    header h1 {
        font-size: 2rem;
    }
}

/* Notes System */
.note-entry {
    background: #1f1f23;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    color: #ccc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.note-entry .text {
    flex: 1;
}

.note-entry .time {
    font-size: 0.8rem;
    color: #888;
    white-space: nowrap;
}
