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

body 
{
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a url('../img/background.png') no-repeat center center fixed;
    background-size: cover;
    color: #e0e0e0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.container 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    z-index: 1;
}

header 
{
    text-align: center;
    margin-bottom: 4rem;
}

.server-name 
{
    font-family: sans-serif;
    font-size: 4rem;
    letter-spacing: 1px;
    margin-bottom: 5.0rem;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    background: linear-gradient(to bottom, #ffffff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline 
{
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 1px;
}

.options-container 
{
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    flex-wrap: wrap;
}

.option-card 
{
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 5px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.option-card::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #ff9900;
}

.option-card:hover::before 
{
    opacity: 1;
}

.option-card:hover .icon,
.option-card:hover .option-name 
{
    color: #ff9900;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.icon 
{
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.option-name 
{
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

footer 
{
    margin-top: 4rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}
