:root {
    --primary-color: #3B82F6;
    --secondary-color: #2563EB;
    --background-color: #0E1A2A;
    --text-color: #E2E8F0;
    --accent-color: #6EE7B7;
}

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

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 41, 59, 0.95);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
}

.notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background-color: rgba(14, 26, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 2rem;
}

.nav {
    display: flex;
}

.header-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 1rem;
    transition: color 0.3s;
}

.header-link:hover {
    color: var(--primary-color);
}

.discord-link {
    color: #5865F2;
}

.discord-link i {
    margin-right: 0.5rem;
}

.store-link {
    margin-right: 0;
}

.hero-section {
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    transition: background-image 2s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-background-1 {
    background-image: url('hero_background.png');
}

.hero-background-2 {
    background-image: url('hero_background.jpg');
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.join-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.join-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.footer {
    width: 100%;
    text-align: center;
    padding: 1rem;
    background-color: var(--background-color);
    font-size: 0.9rem;
    color: #6B7280;
}

.content-section {
    padding-top: 8rem; 
    padding-bottom: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h1 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.content-container {
    padding: 2rem;
    background-color: #1E293B;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-container h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #334155;
}

.content-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #CBD5E1;
    margin-bottom: 1rem;
}

.content-container strong {
    color: #fff;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-link {
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }

    .logo {
        height: 40px;
        margin-right: 1rem;
    }
    
    .store-link {
        margin: 0;
        align-self: flex-end;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .join-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}