:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --accent-color: #38bdf8;
    --secondary-text: #94a3b8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    /* Fixed height to prevent scroll */
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 20%);
    padding: 1rem;
    overflow: hidden;
    /* Hide scrollbars */
}

.container {
    width: 100%;
    max-width: 500px;
    /* Slightly smaller max-width */
    padding: 2rem;
    /* Reduced padding */
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 95vh;
    /* Ensure it doesn't exceed screen height */
    overflow-y: auto;
    /* Allow internal scroll if absolutely necessary on tiny screens */
}

img {
    max-width: 120px;
    /* Smaller logo */
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));
    align-self: center;
}

h1 {
    font-size: 2rem;
    /* Smaller title */
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    line-height: 1.2;
}

p {
    color: var(--secondary-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    /* Reduced margin */
    font-size: 1rem;
    /* Smaller text */
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Reduced gap */
    align-items: center;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    /* Compact buttons */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.5);
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    /* Smaller social buttons */
    height: 42px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    word-break: break-all;
}

.email-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
        margin: 0.5rem;
        max-height: 100vh;
        border: none;
        /* Remove border on very small screens to save space */
        background: transparent;
        /* Or keep it but lighter */
        box-shadow: none;
    }

    /* Re-add glass effect for mobile if preferred, but transparent saves 'visual weight' */
    .container {
        background: var(--glass-bg);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--glass-border);
    }

    img {
        max-width: 100px;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        /* Limit text lines if needed */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn {
        padding: 0.7rem 1rem;
    }
}