:root {
    --main-color: #000000;
    --secondary-color: #6C4BEFFF;
    --text-color: #ffffff;
    --border-radius: 20px;
}

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

body {
    font-family: Helvetica, Tahoma, Verdana, Arial, sans-serif;
    background-color: var(--main-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 20px;
    position: relative;
    background-image: linear-gradient(rgba(17, 17, 17, 0.4), rgba(17, 17, 17, 0.4)), url('/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #333333;
    background-blend-mode: overlay;
}

.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    color: var(--text-color);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--secondary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.link-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.song-block {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.song-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.4);
}

.song-block h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.song-block .fa-music {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.text-container {
    margin: 60px auto 0;
    padding: 40px;
    max-width: 600px;
    border-top: 1px solid #333;
    text-align: center;
}

.text-container p {
    text-align: left;
}

.text-container iframe {
    width: 100%;
    height: 315px;
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
}

.home-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-button:hover {
    color: var(--text-color);
    background-color: #5a0b9d;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: 60px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .link-container {
        grid-template-columns: 1fr;
    }

    .content-section,
    .text-container {
        padding: 40px 10px;
    }
}