@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    background-color: #181e22;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(.4) contrast(1.1);
}

header {
    background: #ea0101;
    color: #000000;
    padding: 50px 20px;
    text-align: center;
    width: 100%;
    box-shadow: 0 0 30px rgba(234, 1, 1, .5);
}

header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: -2px;
    text-transform: lowercase;
}

main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    justify-content: center;
    align-items: flex-start;
}

section {
    background: #1e1e2e;
    color: #ffffff;
    padding: 0;
    border-radius: 8px;
    border: 2px solid #ea0101;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    min-width: 300px;
    flex: 1 1 300px;
    max-width: 400px;
}

h2 {
    background: #ea0101;
    color: #ffffff;
    margin: 0;
    padding: 10px 15px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #ea0101;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding: 15px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding: 0 15px 15px;
}

a {
    background: #ea0101;
    color: #ffffff;
    text-decoration: none;
    padding: 18px;
    border-radius: 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: .3s ease;
    border: 2px solid #ea0101;
}

a:hover {
    background: #ffffff;
    color: #ea0101;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(234, 1, 1, .6);
}

a:active {
    transform: translateY(0);
}

.discord-presence {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-top: 25px;
    border-radius: 0;
    background: #15549d;
    border: 2px solid #ea0101;
    box-shadow: none;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #747f8d;
    box-shadow: 0 0 10px #747f8d;
    transition: background-color .3s ease, box-shadow .3s ease;
}

.discord-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
}

.audio-player {
    margin-top: 25px;
    background: #ea0101;
    padding: 20px;
    border-radius: 0;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.track-title {
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
}

audio {
    width: 100%;
}

footer {
    text-align: center;
    padding: 40px;
    background: #ea0101;
    color: #000000;
    font-size: 1rem;
    width: 100%;
}
/* Radical redesign by AI */
