@import url('https://api.fontshare.com/v2/css?f=clash-display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

body {
    background: #0C0E12;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
}

/* Adjust container to create a better vertical layout */
.container {
    max-width:960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

/* Logo is now top-aligned */
.logo {
    width: 300px;
    margin-bottom: 20px;
}

/* Ensure top alignment for mobile */
@media (max-width: 768px) {
    body {
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .logo {
        width: 250px;
    }
}

/* Headings and text adjustments */
h1, h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-top: 10px;
    margin-bottom:10px;
}

p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Signup Section */
.signup {
    width: 100%;
    max-width:100%;
    padding: 50px 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius:12px;
    text-align: center;
}

.signup h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Newsletter Form */
iframe {
    width: 100%;
    min-height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

/* URL Styling */
a {
    color: #FFF;
    text-decoration:underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFFFFF;
}

/* Discord Button */
.discord {
    margin-top: 40px;
}

.discord-btn {
    display: inline-block;
    padding: 14px 22px;
    font-size: 1.2rem;
    background: #5865F2;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-weight: bold; color:#fff;
}

.discord-btn:hover {
    background: #4752C4;
}

.btn-group a {
    display: inline-block;
    margin-right: 5px;
}
.btn-group img {
    height: 50px; width:auto;
}