/* Reset some default browser styles for a cleaner look */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

/* Header Styles */
header {
    background-color: #111;
    box-shadow: 0 2px 4px rgba(255, 69, 58, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    height: 40px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #ff453a;
}

/* Main Section Styles */
main {
    padding: 20px;
}

main section {
    margin-bottom: 40px;
    text-align: center;
}

main section#home {
    background-color: #111;
    padding: 60px 20px;
    box-shadow: 0 2px 4px rgba(255, 69, 58, 0.1);
}

main section#home h1 {
    font-size: 48px;
    margin: 20px 0;
}

main section#home p {
    font-size: 18px;
    color: #bbb;
}

main section#home .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff453a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

main section#home .btn:hover {
    background-color: #e03a2e;
}

main section#features {
    padding: 20px;
}

main section#features h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

main section#features .feature {
    margin-bottom: 20px;
}

main section#features .feature h3 {
    font-size: 24px;
    color: #ff453a;
}

main section#features .feature p {
    font-size: 16px;
    color: #bbb;
}

main section#download {
    background-color: #111;
    padding: 60px 20px;
    box-shadow: 0 2px 4px rgba(255, 69, 58, 0.1);
}

main section#download h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

main section#download p {
    font-size: 18px;
    color: #bbb;
}

main section#download .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff453a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

main section#download .btn:hover {
    background-color: #e03a2e;
}

main section#contact {
    padding: 20px;
}

main section#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

main section#contact p {
    font-size: 18px;
    color: #bbb;
}

main section#contact .discord-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff453a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

main section#contact .discord-link:hover {
    background-color: #e03a2e;
}

/* Footer Styles */
footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(255, 69, 58, 0.1);
}

footer p {
    margin: 5px 0;
    color: #bbb;
}

footer a {
    color: #ff453a;
    text-decoration: underline;
}

footer a:hover {
    text-decoration: none;
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
}

#loading-screen.fade-out {
    opacity: 0;
}

#loading-content {
    text-align: center;
}

.loading-logo {
    height: 100px;
    margin-bottom: 20px;
}

#progress-bar {
    width: 100%;
    background-color: #444;
    border-radius: 10px;
    overflow: hidden;
}

#progress {
    height: 10px;
    background-color: #e74c3c;
    width: 0;
    border-radius: 10px 0 0 10px;
}

/* Custom scrollbar styles for Webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

::selection {
  color: #e74c3c;
  background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}
