* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #4a0080 100%);
    color: #f0e6d2;
    line-height: 1.7;
}

/* Header - NON-STICKY */
header {
    background: linear-gradient(90deg, #1a0033, #4a0080, #1a0033);
    padding: 25px 0;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    /* NO position sticky */
}

header img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.5));
}

header h1 {
    color: #ffd700;
    font-size: 2em;
    margin-top: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-weight: 700;
}

/* Navigation - NON-STICKY with PLAY button */
nav {
    background: rgba(42, 0, 82, 0.95);
    padding: 18px 0;
    border-bottom: 2px solid #ffd700;
    /* NO position sticky */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

nav ul li a {
    color: #ffd700;
    text-decoration: none;
    padding: 14px 28px;
    display: block;
    background: linear-gradient(135deg, #4a0080, #6a00b3);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid #ffd700;
    font-size: 1.05em;
}

nav ul li a:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a0033;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* PLAY button special styling */
nav ul li a[rel="nofollow"] {
    background: linear-gradient(135deg, #ff6b6b, #c41e3a);
    border-color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.8); }
}

nav ul li a[rel="nofollow"]:hover {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    color: #fff;
}

main {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Luxury Sidebar Layout (Layout #19) */
.luxury-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.luxury-sidebar {
    background: linear-gradient(180deg, rgba(74, 0, 128, 0.6), rgba(26, 0, 51, 0.8));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    height: fit-content;
    position: relative;
}

.luxury-sidebar h3 {
    color: #ffd700;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.luxury-sidebar ul {
    list-style: none;
}

.luxury-sidebar ul li {
    margin-bottom: 15px;
}

.luxury-sidebar ul li a {
    color: #f0e6d2;
    text-decoration: none;
    display: block;
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.luxury-sidebar ul li a:hover {
    background: rgba(255, 215, 0, 0.3);
    border-left-color: #ffd700;
    transform: translateX(5px);
}

.luxury-main {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.luxury-main h2 {
    color: #ffd700;
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.luxury-main p {
    font-size: 1.15em;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0e6d2;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,0,51,0.95), transparent);
    padding: 50px;
    color: #fff;
}

.hero-overlay h2 {
    font-size: 3em;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.9);
}

.hero-overlay p {
    font-size: 1.5em;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
}

/* VIP Cards Grid */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.vip-card {
    background: linear-gradient(135deg, rgba(74, 0, 128, 0.4), rgba(106, 0, 179, 0.3));
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.vip-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.vip-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.vip-card h3 {
    padding: 20px;
    color: #ffd700;
    font-size: 1.4em;
    text-align: center;
}

.vip-card p {
    padding: 0 20px 20px;
    font-size: 1em;
    color: #ddd;
    text-align: center;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a0033;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    margin: 25px auto;
    display: block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border: 3px solid #1a0033;
}

.cta-button:hover {
    background: linear-gradient(135deg, #6a00b3, #4a0080);
    color: #ffd700;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(106, 0, 179, 0.6);
}

/* FAQ */
.faq-item {
    background: rgba(74, 0, 128, 0.3);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 5px solid #ffd700;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 12px;
    font-size: 1.3em;
}

/* Reviews */
.review {
    background: rgba(74, 0, 128, 0.3);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 5px solid #6a00b3;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1em;
}

.review-rating {
    color: #ffd700;
    font-size: 1.3em;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a0033, #2d0052);
    color: #ddd;
    padding: 50px 20px 25px;
    margin-top: 70px;
    border-top: 4px solid #ffd700;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 18px;
    font-size: 1.4em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.license-badge {
    background: linear-gradient(135deg, #6a00b3, #4a0080);
    color: #ffd700;
    padding: 12px 25px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 12px;
    font-weight: bold;
    border: 2px solid #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #aaa;
}

/* Responsive */
@media (max-width: 1024px) {
    .luxury-container {
        grid-template-columns: 1fr;
    }
    
    .luxury-sidebar {
        order: 2;
    }
    
    .luxury-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .vip-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay h2 {
        font-size: 2em;
    }
    
    .hero-overlay p {
        font-size: 1.1em;
    }
}
