:root {
    --bg-dark: #111111;
    --bg-darker: #0a0a0a;
    --gold: #f5c518;
    --gold-dark: #d4a70b;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 900;
}

.highlight {
    color: var(--gold);
}

/* HERO */
.hero {
    text-align: center;
    padding: 40px 20px 60px 20px;
    background: linear-gradient(to bottom, #222222, #000000);
}

.hero h1 {
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    margin: 10px 0 30px 0;
    font-weight: 700;
}

.hero-video-wrapper {
    position: relative;
    max-width: 350px;
    margin: 0 auto 40px auto;
}

.hero-video {
    width: 100%;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 2;
    border: 2px solid #333;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(245,197,24,0.4) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(20px);
}

/* BUTTONS */
.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 20px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4);
    box-sizing: border-box;
}

.primary-cta {
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 197, 24, 0.6);
    filter: brightness(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* FEATURES */
.features {
    padding: 50px 20px;
    background-color: var(--bg-darker);
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.artist-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.artist-list li {
    font-size: 1.1rem;
    font-weight: 700;
    background: #151515;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--gold);
    display: flex;
    align-items: center;
}

.artist-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.star {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* INFORMATIONAL SECTION */
.informational {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    text-align: center;
}

.informational h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dark);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-box p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* GUARANTEE SECTION */
.guarantee {
    padding: 50px 20px;
    background: linear-gradient(to right, #1a1a1a, #0d0d0d);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-text h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.guarantee-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* PRICING */
.pricing {
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(circle at top, #2a2a2a, #000000);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 40px 20px;
    width: 100%;
    max-width: 350px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-5px);
}

.card.premium {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(245, 197, 24, 0.15);
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-weight: 900;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: var(--text-light);
}

.card.premium h3 {
    color: var(--gold);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 10px 0;
    color: var(--text-light);
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
}

.payment-type {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    text-align: left;
}

.benefits li {
    margin-bottom: 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.buy-button {
    font-size: 1.1rem;
    padding: 18px 0;
}

.card.basic .buy-button {
    background: #333;
    color: var(--text-light);
    box-shadow: none;
    animation: none;
}

.card.basic .buy-button:hover {
    background: #444;
}

/* FOOTER */
footer {
    background-color: #050505;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.legal-links {
    margin: 20px 0;
}

.legal-links a {
    color: #888;
    margin: 0 10px;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (min-width: 768px) {
    .pricing-cards {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    .artist-list {
        grid-template-columns: 1fr 1fr;
    }
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .guarantee-content {
        flex-direction: row;
        text-align: left;
    }
    .guarantee-icon {
        margin-right: 20px;
    }
}
