:root {
    --primary-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #ff0050;
    /* TikTok colorish */
    --accent-color-2: #00f2ea;
    /* TikTok colorish */
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    overflow: hidden;
    /* Prevent scroll */
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('mall_food_court.webp');
    background-size: cover;
    background-position: left;
    filter: brightness(0.9);
    /* Slightly darken bg for readability */
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile friendly max width */
    padding: 20px;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: fadeIn 0.8s ease-out;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.link-item i {
    font-size: 1.3rem;
}

.link-item.primary {
    background-color: #333;
    color: white;
}

.link-item.primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.link-item.secondary {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.link-item.secondary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
    /* TikTok pink on hover */
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        max-width: 90%;
        /* Use more screen width */
        padding: 15px;
    }

    .card {
        background: rgba(255, 255, 255, 0.35);
        /* More transparent on mobile */
        padding: 30px 20px;
        /* Reduced padding */
        border-radius: 16px;
    }

    header h1 {
        font-size: 2rem;
        /* Smaller heading */
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        letter-spacing: 1.5px;
    }

    .links {
        gap: 12px;
        /* Tighter spacing */
    }

    .link-item {
        padding: 14px;
        font-size: 1rem;
    }

    .link-item i {
        font-size: 1.2rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .card {
        background: rgba(255, 255, 255, 0.3);
        /* Even more transparent */
        padding: 25px 18px;
    }

    header h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .link-item {
        padding: 12px;
        font-size: 0.95rem;
    }
}