:root {
    --bg-dark: #0f0c0d;
    --bg-accent: #1e1316;
    --text-light: #f4efeb;
    --text-dim: #b8aba2;
    --gold: #d4af37;
    --gold-light: #ebd07a;
    --wine-deep: #3d0c1b;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.12);
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --radius-soft: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at 50% 0%, var(--bg-accent) 0%, var(--bg-dark) 80%);
    color: var(--text-light);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 80% 90%, rgba(61, 12, 27, 0.4), transparent 50%),
        radial-gradient(ellipse at 20% 10%, rgba(212, 175, 55, 0.05), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile first, locked width on desktop */
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
}

.logo-container {
    margin-bottom: 1rem;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.fallback-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    max-width: 80%;
}

/* Links / Buttons */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    margin-bottom: 3rem;
}

.link-item {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-soft);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.link-item:hover, .link-item:active {
    background: var(--glass-hover);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px rgba(212, 175, 55, 0.05);
}

.link-item:hover::before, .link-item:active::before {
    transform: translateX(100%);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.link-item:hover .link-icon {
    color: var(--gold-light);
    transform: scale(1.05);
}

.link-text {
    flex-grow: 1;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.chevron {
    color: var(--text-dim);
    transition: var(--transition-smooth);
}

.link-item:hover .chevron {
    color: var(--gold);
    transform: translateX(3px);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    animation: fadeUp 1s ease-out 1.2s forwards;
}

.footer-address {
    font-size: 0.8rem;
    font-style: normal;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

/* Animations Tools */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-link {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Water Ripple Decorative Elements */
.water-ripple {
    position: fixed;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.03);
    pointer-events: none;
    z-index: 0;
    animation: rippleSway 15s infinite alternate ease-in-out;
}

.ripple-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.02);
}

.ripple-2 {
    width: 800px;
    height: 800px;
    bottom: -300px;
    left: -200px;
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.02);
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes rippleSway {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.05) translate(20px, 15px);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95) translate(-15px, -10px);
    }
}
