* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff4d94;
}

.logo span {
    color: #ffd700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff4d94;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://via.placeholder.com/1920x1080?text=Premium+Background') no-repeat center center/cover;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ffd700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vip-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #ff4d94, #ffd700);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vip-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 77, 148, 0.5);
}

.content-preview {
    padding: 80px 50px;
    text-align: center;
}

.content-preview h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffd700;
}

.preview-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.preview-card {
    position: relative;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locked .lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.preview-card p {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: 10px;
}

.subscription {
    padding: 80px 50px;
    text-align: center;
    background: #222;
}

.subscription h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ff4d94;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.plan {
    background: #333;
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.plan:hover {
    transform: translateY(-10px);
}

.plan h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.plan .price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan .price span {
    font-size: 16px;
    color: #ccc;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 14px;
}

footer a {
    color: #ff4d94;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .preview-grid { flex-direction: column; align-items: center; }
    .plans { flex-direction: column; align-items: center; }
}