@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700&display=swap');

:root {
    --bg-color: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --accent-red: #ff4d4d;
    --accent-blue: #00d2ff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --glass-blur: 15px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background elements */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

body::before {
    background: radial-gradient(circle, var(--accent-red), transparent);
    top: -200px;
    left: -200px;
}

body::after {
    background: radial-gradient(circle, var(--accent-blue), transparent);
    bottom: -200px;
    right: -200px;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 40px;
    background: var(--card-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--card-border);
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
}

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

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.logo-section img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-section .logo-wrapper {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo-section .logo-wrapper:hover {
    transform: scale(1.05);
}

.divider {
    width: 2px;
    height: 40px;
    background: var(--card-border);
}

.header {
    margin-bottom: 24px;
}

.header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to bottom right, #fff, #a0a0ab);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-red);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.content {
    margin-bottom: 40px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.nepali-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
}

.info-card {
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.info-card h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-card p {
    font-weight: 600;
    color: #fff;
}

.footer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    .logo-section {
        gap: 20px;
        flex-direction: column;
    }
    .divider {
        width: 60px;
        height: 1px;
    }
    .header h1 {
        font-size: 1.8rem;
    }
    .info-section {
        grid-template-columns: 1fr;
    }
}

