* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

.box {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header */
.main-header {
    background: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.header-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 3px;
}

.logo-subtitle {
    font-size: 14px;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: #ffd700;
    color: #000;
}

/* VIP Hero */
.vip-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%),
                url('https://tse-mm.bing.com/th?q=luxury+VIP+gold.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 85px 28px;
    text-align: center;
}

.vip-hero-inner h1 {
    font-size: 58px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 16px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
}

.vip-hero-inner p {
    font-size: 22px;
    color: #fff;
}

/* Benefits Area */
.benefits-area {
    padding: 80px 28px;
    background: #f9f9f9;
}

.intro-text {
    text-align: center;
    margin-bottom: 55px;
}

.intro-text h2 {
    font-size: 44px;
    font-weight: 900;
    color: #000;
    margin-bottom: 14px;
}

.intro-text p {
    font-size: 18px;
    color: #666;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-box {
    background: #fff;
    padding: 42px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #ffd700;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.benefit-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 3px solid #ffd700;
}

.benefit-box h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 14px;
    font-weight: 800;
}

.benefit-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Tiers Area */
.tiers-area {
    padding: 80px 28px;
    background: #fff;
}

.tiers-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.tier-item {
    padding: 42px 28px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tier-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    z-index: 1;
}

.tier-item > * {
    position: relative;
    z-index: 2;
}

.tier-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.bronze-tier {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.silver-tier {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.gold-tier {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.platinum-tier {
    background: linear-gradient(135deg, #e5e4e2 0%, #b9f2ff 100%);
    color: #000;
}

.tier-icon {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 18px;
    padding: 12px 24px;
    background: rgba(0,0,0,0.2);
    border-radius: 25px;
    display: inline-block;
}

.gold-tier .tier-icon,
.platinum-tier .tier-icon {
    background: rgba(0,0,0,0.1);
}

.tier-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.tier-requirement {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    display: inline-block;
}

.gold-tier .tier-requirement,
.platinum-tier .tier-requirement {
    background: rgba(0,0,0,0.1);
}

.tier-perks {
    list-style: none;
    text-align: left;
}

.tier-perks li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 8px;
}

/* Join CTA */
.join-cta {
    padding: 80px 28px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 46px;
    font-weight: 900;
    color: #000;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 20px;
    color: #333;
    margin-bottom: 32px;
    font-weight: 600;
}

.join-btn {
    padding: 18px 55px;
    background: #000;
    color: #ffd700;
    border: none;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Footer */
.main-footer {
    background: #000;
    color: #fff;
    padding: 65px 28px 28px;
}

.footer-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-bottom: 42px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 22px;
    color: #ffd700;
    font-weight: 800;
}

.footer-col p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
    color: #ccc;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

.footer-base {
    border-top: 1px solid #333;
    padding-top: 28px;
    text-align: center;
}

.footer-base p {
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 18px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .vip-hero-inner h1 {
        font-size: 40px;
    }
    
    .vip-hero-inner p {
        font-size: 18px;
    }
    
    .intro-text h2 {
        font-size: 34px;
    }
    
    .benefits-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tiers-display {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .cta-content h2 {
        font-size: 34px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .vip-hero-inner h1 {
        font-size: 34px;
    }
    
    .vip-hero-inner p {
        font-size: 16px;
    }
    
    .intro-text h2 {
        font-size: 28px;
    }
    
    .benefit-box {
        padding: 32px 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .join-btn {
        padding: 16px 45px;
        font-size: 17px;
    }
}
