/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

/* Background with Overlay */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
}

.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* 90% black overlay */
}

/* Header / Logo */
header {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.logo {
    max-width: 150px;
    height: auto;
    display: flex;
}

/* Main Content */
main {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10%;
    /* Left alignment */
    padding-right: 5%;
}

.content {
    max-width: 800px;
    z-index: 1;
}

h1 {
    color: #FF0000;
    /* Bright Red */
    font-size: 5rem;
    /* Large and plakativ */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Sound Button */
.sound-button {
    background: transparent;
    border: 2px solid #FF0000;
    color: #FF0000;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.sound-button:hover {
    background: #FF0000;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.sound-button .icon {
    font-size: 1.2rem;
}

/* Footer */
footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 10;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FF0000;
}

/* Responsiveness */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        /* Allow scrolling on mobile if content is tall */
        height: auto;
        min-height: 100vh;
    }

    header {
        top: 20px;
        right: 20px;
    }

    .logo {
        max-width: 80px;
    }

    main {
        padding: 80px 10px 30px 10px;
        /* Top padding for logo, bottom for footer */
        align-items: flex-start;
        /* Align top on mobile */
        justify-content: center;
    }

    .content {
        text-align: left;
    }

    h1 {
        font-size: 2rem;
        /* Smaller on mobile but still bold */
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    footer {
        position: relative;
        bottom: auto;
        margin-top: 40px;
        padding-bottom: 20px;
    }
}