:root {
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --font-main: 'Outfit', sans-serif;

    /* Luxury Gold Gradients */
    --gold-gradient: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-text-gradient: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    /* Subtle radial gradient background for depth */
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Header */
header {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.top-message {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;

    /* Metallic Text Effect */
    background: var(--gold-text-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.3);
}

.logo-placeholder {
    font-size: 52px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.logo-placeholder i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(252, 246, 186, 0.5));
    animation: float 3s ease-in-out infinite;
}

/* Sparkle effect on logo */
.logo-placeholder::after {
    content: '✦';
    position: absolute;
    top: -10px;
    right: -10px;
    color: #FCF6BA;
    font-size: 20px;
    animation: twinkle 1.5s infinite alternate;
}

.shop-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Buttons */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 25px;

    /* Glassmorphism + Gold Border */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
    /* Fallback for border-radius with border-image (clip-path or nested div is better, but simple border color works for now) */
    /* Switching to simple border color for radius support */
    border: 1px solid rgba(191, 149, 63, 0.5);

    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn i {
    font-size: 26px;
    width: 45px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(191, 149, 63, 0.3));
}

/* Shine Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(252, 246, 186, 0.2),
            transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.4);
    /* Golden Glow */
    border-color: #FCF6BA;
    background: rgba(191, 149, 63, 0.1);
}

.btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Footer */
footer {
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(191, 149, 63, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-item i {
    color: #BF953F;
}

/* Animations */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .top-message {
        font-size: 24px;
    }

    .btn {
        padding: 15px 20px;
        font-size: 16px;
    }
}