:root {
    --bg-color: #0f1115;
    --text-color: #ffffff;
    --text-muted: #8e9297;
    --accent-color: #5865F2; /* Discord brand color */
    --accent-hover: #4752C4;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.6s ease-out;
}

.welcome-text {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 800;
}

.subtitle {
    margin-top: 0;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-color), #7289da);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px -10px rgba(88, 101, 242, 0.5);
    position: relative;
    overflow: hidden;
    width: 80%;
}

.discord-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discord-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -10px rgba(88, 101, 242, 0.8);
    background: linear-gradient(135deg, var(--accent-hover), #5b6eae);
}

.discord-link:hover::before {
    opacity: 1;
}

.discord-link:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px -5px rgba(88, 101, 242, 0.5);
}

.text {
    position: relative;
    z-index: 1;
}

.icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.discord-link:hover .icon {
    transform: scale(1.15) rotate(-8deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
