@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --gold-primary: #d4af37;
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f4e0b5 50%, #c5a059 100%);
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --text-color: #000000;
    --text-glow: rgba(212, 175, 55, 0.3);
}

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

body {
    font-family: 'Playfair Display', serif;
    background-color: #1a1510;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('bg.png') no-repeat center center;
    background-size: cover;
}

.bg-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
}

.container {
    max-width: 450px;
    width: 90%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.logo-wrapper {
    width: 100%;
    max-width: 280px;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-out;
}

.logo-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.3) drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.description {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #e5e5e5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 300px;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--gold-gradient);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

.btn:nth-child(1) { animation-delay: 0.5s; }
.btn:nth-child(2) { animation-delay: 0.7s; }
.btn:nth-child(3) { animation-delay: 0.9s; }

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Specific button styles to match the metallic sheen better */
.btn {
    border: 0.5px solid rgba(255, 255, 255, 0.2);
}
