/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

/* Language Selector */
.language-selector {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.globe-icon {
    color: #666;
}

.arrow-icon {
    color: #666;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    color: #e91e8c;
    font-weight: 500;
    margin-bottom: 50px;
}

/* Discord Card */
.discord-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 180px;
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #ec4899 100%);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.discord-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.5),
        0 0 30px rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, #db2777 0%, #ec4899 50%, #f472b6 100%);
}

.discord-card:active {
    transform: translateY(-2px) scale(1.02);
}

.discord-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.discord-icon svg {
    width: 36px;
    height: 36px;
}

.discord-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.discord-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 30px 20px;
    text-align: center;
    width: 100%;
}

.footer p {
    font-size: 13px;
    color: #888;
}

.footer a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .discord-card {
        width: 220px;
        height: 160px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    animation: fadeIn 0.6s ease-out;
}

.subtitle {
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.discord-card {
    animation: fadeIn 0.6s ease-out 0.2s both;
}