body
{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #FCFCFC;
}

.loading-screen
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCFCFC;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-animation
{
    width: 480px;
    height: 720px;
    background: url('../textures/loading.gif') center no-repeat;
}

.navbar
{
    position: fixed;
    width: 100%;
    transition: all 0.4s ease;
    z-index: 100;
}

.navbar-container
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.logo
{
    display: flex;
    align-items: center;
}

.logo a
{
    color: #C6CDD4;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    padding-top: 0;
    display: flex;
    align-items: center;
}

.logo a:hover
{
    color: white;
    font-size: 22px;
}

.nav-menu
{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li a
{
    color: #C6CDD4;
    text-decoration: none;
    padding: 13px 15px;
    transition: all 0.4s ease;
}

.nav-menu li a:hover
{
    color: white;
    font-size: 18px;
}

.banner
{
    background: url('../textures/banner-bg.png') center/cover no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    color: white;
}

.banner-content h2
{
    font-size: 2.5em;
    margin-bottom: 20px;
}

.banner-content p
{
    font-size: 1.2em;
    margin: 10px 0;
}

.action-buttons
{
    margin-top: 30px;
}

.btn-primary, .btn-secondary
{
    display: inline-block;
    padding: 12px 24px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: bold;
}

.btn-primary:hover, .btn-secondary:hover
{
    background-color: rgba(255, 255, 255, 0.2);
}

.content-container
{
    background-color: white;
    padding: 20px 0;
}

.join-section
{
    padding: 20px;
}

.join-link
{
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

.server-info
{
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.server-image
{
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
}

.info-content
{
    line-height: 1.8;
}

.info-content h2
{
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-content h3
{
    color: #3498db;
    margin-top: 25px;
    font-size: 1.3em;
}

.info-content p
{
    line-height: 1.6;
    margin: 10px 0;
}

.info-content a
{
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.info-content a:hover
{
    color: #2980b9;
    border-bottom-color: #2980b9;
    padding-bottom: 4px;
}

.dark-bg a
{
    color: #4aa3df;
    border-bottom-color: #4aa3df;
}

.dark-bg a:hover
{
    color: #3498db;
    border-bottom-color: #3498db;
}

.visitor-counter
{
    margin-top: 30px;
    text-align: center;
}

.site-footer
{
    text-align: center;
    padding: 20px 0;
    background-color: #f5f5f5;
}

.site-footer a 
{
    color: #333;
    text-decoration: none;
    background: linear-gradient(to right, #3498db, #3498db) no-repeat;
    background-size: 0% 2px;
    background-position: left bottom;
    transition: background-size 0.3s ease;
    padding-bottom: 2px;
}

.site-footer a:hover 
{
    background-size: 100% 2px;
    color: #3498db;
}

.navbar.scrolled
{
    background-color: white;
    box-shadow: 0 0 8px #EAEAEA;
}

.navbar.scrolled .logo a,
.navbar.scrolled .nav-menu li a
{
    color: #333;
}

.navbar.scrolled .btn-primary,
.navbar.scrolled .btn-secondary
{
    border-color: #333;
    color: #333;
}

.navbar.scrolled .btn-primary:hover,
.navbar.scrolled .btn-secondary:hover
{
    background-color: rgba(0, 0, 0, 0.05);
}