* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: black;
    font-family: Arial, sans-serif;
}

.relative {
    position: relative;
    min-height: 100vh;
}

.background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, black);
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    color: white;
}

.title {
    font-size: 3.75rem;
    font-weight: bold;
    margin: 2rem 0;
    text-align: center;
    color: #f59e0b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.server-info {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid #f59e0b;
    max-width: 28rem;
    width: 100%;
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.info-item {
    margin-bottom: 1rem;
}

.info-label {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.info-value {
    background-color: #111827;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

.info-text {
    color: #f59e0b;
    font-family: monospace;
}

.discord-button {
    display: block;
    background-color: #4f46e5;
    color: white;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.discord-button:hover {
    background-color: #4338ca;
    transform: scale(1.05);
}

.description {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid #f59e0b;
    max-width: 42rem;
    width: 100%;
}

.description-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: #f59e0b;
}

.description-content {
    color: #d1d5db;
}

.feature-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.feature-list li {
    margin: 0.5rem 0;
}
