:root {
    --gold: #b5893d;
    --gold-bright: #d4af37;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.4); /* Thinner for better blur effect */
    --glass-border: rgba(255, 255, 255, 0.7);
    --shine: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    --shadow-premier: 0 40px 80px -20px rgba(0, 0, 0, 0.15), 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

/* Enhanced Background */
.background-wrap {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Deeper contrast background to make glass pop */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1)), 
                url('hero_v2.png') center/cover no-repeat;
    z-index: -1;
    transform: scale(1.1);
    filter: saturate(1.2);
}

.app-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    perspective: 1000px;
}

/* Premier Glass Card */
.bespoke-card {
    position: relative;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 35px 25px;
    box-shadow: var(--shadow-premier);
    text-align: center;
    animation: cardEntry 1s var(--transition);
    overflow: hidden;
}

/* Glass Shine Effect */
.bespoke-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--shine);
    pointer-events: none;
    z-index: 1;
}

@keyframes cardEntry {
    from { opacity: 0; transform: translateY(30px) rotateX(10deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* Profile Section */
.profile-section {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.logo-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--gold), #8e6c2d);
    border: 3px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(181, 137, 61, 0.3);
}

.logo-inner i {
    font-size: 2.2rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.resort-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Interaction Grid */
.interaction-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.glass-action {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.glass-action span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.glass-action:hover .icon-wrap {
    background: var(--gold);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(181, 137, 61, 0.2);
}

/* Buttons */
.cta-stack {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.gold-btn, .glass-btn {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.gold-btn {
    background: linear-gradient(135deg, var(--gold), #8e6c2d);
    color: #fff;
    box-shadow: 0 10px 25px rgba(181, 137, 61, 0.3);
    letter-spacing: 1px;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text-dark);
}

.gold-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--gold);
    transform: scale(0.98);
}

/* Footer */
.card-footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 25px;
}

.card-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 15px 0;
}

.social-row a {
    color: var(--gold);
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-row a:hover {
    transform: scale(1.2);
    color: var(--gold-bright);
}

.copyright {
    font-size: 0.7rem !important;
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-height: 700px) {
    .bespoke-card { padding: 25px 20px; }
    .profile-section { margin-bottom: 20px; }
    .brand-name { font-size: 1.8rem; }
    .interaction-grid { margin-bottom: 20px; }
}
