:root {
    --bg-color: #07060b;
    --text-main: #f5f4fa;
    --text-muted: #9f9da6;
    --primary-color: #dfb15b;
    --secondary-color: #8c6a2d;
    --accent-gold: #ffd700;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-glow: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(223, 177, 91, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(140, 106, 45, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    padding-top: 40px; /* Offset for sticky promo bar */
}

h1, h2, h3, .badge, .cta-button, .new-price {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Typography */
.highlight {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(223, 177, 91, 0.25);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-glow);
    color: #07060b;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(223, 177, 91, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(223, 177, 91, 0.5);
    color: #07060b;
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(223, 177, 91, 0.6); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(223, 177, 91, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(223, 177, 91, 0); }
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
    animation: pulse-glow 4s alternate infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

/* Social Proof */
.social-proof {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial .stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial .author {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Benefits */
.benefits {
    padding: 80px 5%;
    background: rgba(0,0,0,0.3);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
}

/* Music Sample Section */
.music-sample {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.player-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.audio-player.playing {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(223, 177, 91, 0.20);
}

.album-cover {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.5s;
}

.audio-player.playing .album-cover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.player-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.player-info h4 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin: 0;
}

.player-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-glow);
    border-radius: 5px;
    transition: width 0.1s linear;
}

.time {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 35px;
}

.play-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
}

.play-btn:hover {
    background: var(--gradient-glow);
    border-color: transparent;
    color: #07060b;
    transform: scale(1.1);
}

.text-center {
    text-align: center;
}
.mt-4 {
    margin-top: 40px;
}

/* Offer Section */
.offer-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.offer-card {
    max-width: 600px;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(223, 177, 91, 0.20);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--secondary-color), transparent 30%);
    animation: rotate 4s linear infinite;
    z-index: -1;
    opacity: 0.1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.offer-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.offer-description {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.price-container {
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #ff4757;
    font-size: 1.5rem;
    margin-right: 15px;
    font-weight: 600;
}

.new-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 40px;
    max-width: 300px;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.trust-badges {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: rgba(0,0,0,0.8);
    padding: 50px 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-muted);
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-text {
        margin-bottom: 50px;
    }
    
    .floating-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .audio-player {
        flex-direction: column;
        text-align: center;
    }
    
    .player-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .play-btn {
        margin: 15px auto 0;
    }
    
    .progress-container {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .promo-bar {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.8rem;
    }
    
    .notification-popup {
        left: 5%;
        right: 5%;
        transform: none;
        bottom: -100px;
        width: auto;
        box-sizing: border-box;
    }
    .notification-popup.show {
        bottom: 20px;
    }
}

/* Sticky Promo Bar */
.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #110e08, #221c0e, #110e08);
    color: var(--primary-color);
    border-bottom: 1px solid rgba(223, 177, 91, 0.2);
    padding: 10px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

/* Floating Notification */
.notification-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(223, 177, 91, 0.15);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s ease;
    opacity: 0;
    max-width: 300px;
}

.notification-popup.show {
    bottom: 20px;
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    background: var(--gradient-glow);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.notification-text {
    font-size: 0.85rem;
    line-height: 1.3;
}

.notification-name {
    font-weight: 700;
    color: var(--primary-color);
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}
