* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --dark: #1a1a1a;
    --darker: #0a0a0a;
    --card: #2d2d2d;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--darker);
    color: #fff;
    line-height: 1.6;
}

/* VIP Header */
.vip-header {
    background: var(--dark);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.vip-top-bar {
    background: var(--darker);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.vip-status {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.status-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.member-id {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.vip-notifications {
    position: relative;
    cursor: pointer;
}

.vip-notifications i {
    font-size: 1.5rem;
    color: var(--gold);
}

.notification-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.vip-nav {
    padding: 1rem 0;
}

.vip-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip-logo {
    height: 50px;
}

.vip-nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.nav-item.active,
.nav-item:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.btn-vip-logout {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-vip-logout:hover {
    background: var(--gold);
    color: #000;
}

/* Dashboard */
.dashboard-section {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.dashboard-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    font-style: italic;
}

.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--card) 0%, #1a1a1a 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.stat-card.gold {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--card) 100%);
}

.stat-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-change {
    font-size: 0.85rem;
    opacity: 0.6;
}

.stat-change.positive {
    color: #4ade80;
}

.dashboard-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-section-title h2 {
    font-size: 2rem;
    color: var(--gold);
}

.view-all {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all:hover {
    text-shadow: 0 0 10px var(--gold);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.exclusive-card {
    background: linear-gradient(135deg, var(--card) 0%, #1a1a1a 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s;
}

.exclusive-card.premium {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, var(--card) 100%);
}

.exclusive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
}

.exclusive-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.exclusive-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.exclusive-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.exclusive-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.exclusive-benefit i {
    color: var(--gold);
}

.btn-exclusive {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-exclusive:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Benefits */
.benefits-section {
    padding: 80px 0;
    background: rgba(0,0,0,0.3);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-header-center p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--card);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Concierge */
.concierge-section {
    padding: 80px 0;
}

.concierge-wrapper {
    background: linear-gradient(135deg, var(--card) 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.concierge-content {
    text-align: center;
}

.concierge-content h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.concierge-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.concierge-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.concierge-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.concierge-feature i {
    font-size: 2rem;
    color: var(--gold);
}

.concierge-feature h5 {
    margin-bottom: 0.25rem;
}

.concierge-feature p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.btn-concierge {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-concierge:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
}

/* Footer */
.vip-footer {
    background: var(--darker);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section h5 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .vip-nav-menu {
        display: none;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .stats-dashboard {
        grid-template-columns: 1fr;
    }
}
