:root {
    --nice-padding: 6rem;
    --roundness: 0.75rem;
    --accent1: #ff4500; /* Bright fiery orange-red */
    --accent2: #cc3700; /* Slightly darker shade for hovers/accents */
    --accent2_transp: #cc370055; /* Transparent version for glows */
    --background1: #212529;
    --background2: #16191b;

    color-scheme: dark;
}

span, body {
    font-family: 'Space Grotesk', sans-serif;
}

body {
    background-color: var(--background1);
    color: white;
    margin: 0px;
}

/* Scroll Offsets */
#more, #discord, #about, #join, #vote {
    padding-top: 5rem;
    margin-top: -5rem;
}

.headline {
    margin-top: 2rem;
    color: #fff;
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
}

/* =========================================
   NAVBARS (Glassmorphism & Fire Theme)
   ========================================= */
.desktop_navbar, .mobile_navbar {
    background-color: rgba(22, 25, 27, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.3) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.desktop_navbar {
    display: flex;
    height: 4rem;
    align-items: center;
    flex-direction: row;
}

.desktop_navbar_logo_img {
    width: 5rem;
    padding-left: 2rem;
    padding-right: 1rem;
}

.desktop_navbar_link {
    color: #e0e0e0 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-decoration: none;
}

.desktop_navbar_link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 50%;
    background-color: var(--accent1);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--accent1);
}

.desktop_navbar_link:hover {
    color: white !important;
    text-shadow: 0 0 8px var(--accent2_transp);
}

.desktop_navbar_link:hover::after {
    width: 80%;
    left: 10%;
}

.desktop_navbar_link2_div {
    margin-left: auto;
    margin-right: 2rem;
}

.desktop_navbar_link2, .join-btn-mobile {
    background: linear-gradient(45deg, var(--accent2), var(--accent1)) !important;
    color: white !important;
    padding: 0.6rem 1.8rem !important;
    border-radius: 30px !important;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 1.1rem;
}

.desktop_navbar_link2:hover, .join-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.7);
    background: rgba(22, 25, 27, 0.9) !important;
    border: 1px solid var(--accent1);
    color: var(--accent1) !important;
}

/* Mobile Nav Specifics */
.mobile_navbar {
    display: none;
    flex-direction: row;
    min-height: 53px;
    overflow: hidden;
}

.mobile_navbar_logo_img {
    position: absolute;
    height: 42px;
    padding-left: 0.5rem;
    top: 0;
    padding-top: 3.5px;
}

#mobile_navbar_links {
    display: none;
    margin-top: 53px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(22, 25, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent1);
}

.mobile_navbar_link {
    padding: 1rem;
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile_navbar .icon {
    position: absolute;
    right: 0;
    top: 0;
    padding: 16px;
    cursor: pointer;
}

/* =========================================
   HERO SECTION 
   ========================================= */
.mainflex {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main1 {
    padding-top: calc(var(--nice-padding) + 4rem);
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, .5) url('https://imgur.com/cGMLytH.png');
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.main1_logo_a {
    margin-bottom: 3rem;
    cursor: default;
}

.main1_logo {
    display: block;
    transition: all .5s;
    max-width: 40rem;
    width: 90%;
}

.main1_logo:hover {
    transform: scale(1.05);
}

.main1_description {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.main1_actcent {
    font-weight: 800;
    color: var(--accent1);
}

.main1_downarrow {
    opacity: 50%;
    height: 1.5rem;
    padding: 2rem;
    transition: all .5s;
}

.main1_downarrow:hover {
    opacity: 100%;
    transform: scale(1.05);
}

/* =========================================
   DISCORD SECTION
   ========================================= */
.main4 {
    min-height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.main4_dc_widget {
    border-radius: var(--roundness);
    border: 0;
}

.main4_dc_div {
    margin: 2rem;
    display: flex;
    flex-direction: row;
    background-color: var(--background2);
    border-radius: var(--roundness);
    max-width: 48rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.main4_dc_description_div {
    display: flex;
    flex-direction: column;
}

.main4_dc_description_title {
    margin: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.main4_dc_description {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #a0a0a0;
}

.main4_dc_button_a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    border: solid var(--accent1) 1px;
    border-radius: var(--roundness);
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    transition: all .5s;
}

.main4_dc_button_a:hover {
    background-color: var(--accent1);
    transform: scale(1.05);
}

.main4_dc_button {
    padding: 0.5rem 1.5rem;
    font-weight: bold;
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================= */
@media only screen and (max-width: 768px) {
    .desktop_navbar {
        display: none !important;
    }
    
    .mobile_navbar {
        display: flex;
    }
    
    .headline {
        font-size: 2.2rem;
    }
    
    .main1_description {
        font-size: 2rem;
    }
    
    .main4_dc_div {
        flex-direction: column;
        margin: 1rem;
    }
    
    .main4_dc_widget {
        height: 20rem;
        width: 100%;
    }
}