:root {
    --primary-gold: #d4af37;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    position: relative; 
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/cover.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.liquid-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-gold) !important;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.7) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    padding-bottom: 8px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

header#home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section { padding: 120px 0; min-height: 80vh; }

.section-glass-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.card-custom {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-custom:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--primary-gold);
}

.app-icon-img {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    margin-bottom: 25px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.btn-store {
    font-size: 0.8rem;
    border-radius: 50px;
    padding: 10px 18px;
    margin: 4px;
    transition: 0.3s;
    background: rgba(255,255,255,0.05);
}

.btn-play:hover { border-color: #3DDC84 !important; color: #3DDC84 !important; }
.btn-apple:hover { background: white !important; color: black !important; border-color: white !important; }

.accent-text { color: var(--primary-gold); }

.policy-link {
    font-size: 0.7rem;
    color: #888;
    text-decoration: none;
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.policy-link:hover { color: var(--primary-gold); }