/* ==========================================================================
   GTA 6 Poster Shop - Vibrant Tropical Style
   ========================================================================== */

:root {
    --neon-pink: #ff006e;
    --neon-purple: #8338ec;
    --neon-blue: #3a86ff;
    --neon-yellow: #ffbe0b;
    --neon-orange: #fb5607;
    --dark: #0a0a0f;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --light: #f5f5f5;
    --gradient-main: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    --gradient-hot: linear-gradient(135deg, #ffbe0b 0%, #fb5607 50%, #ff006e 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    font-weight: 400;
}

a {
    color: var(--neon-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(58, 134, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(131, 56, 236, 0.4) 0%, transparent 50%),
        var(--dark);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(80px, 15vw, 200px);
    background: var(--gradient-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    margin-bottom: 16px;
    text-shadow: 0 0 80px rgba(255, 0, 110, 0.5);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--neon-yellow);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(16px, 2vw, 19px);
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(245, 245, 245, 0.85);
}


.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 110, 0.6);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    padding: 18px 48px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 24px;
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */

section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 12px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: rgba(245, 245, 245, 0.7);
    font-size: 18px;
    margin-bottom: 64px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.poster-card {
    position: relative;
    background: var(--dark-3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.poster-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
}

.poster-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-hot);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.poster-image-wrapper {
    aspect-ratio: 5 / 7;
    overflow: hidden;
    background: var(--dark-2);
}

.poster-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.poster-card:hover .poster-image-wrapper img {
    transform: scale(1.08);
}

.poster-info {
    padding: 20px;
    text-align: right;
}

.poster-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--neon-yellow);
}

.poster-description {
    color: rgba(245, 245, 245, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how-section {
    background: var(--dark-2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: var(--dark-3);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--neon-yellow);
}

.step-card p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 15px;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-section {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.price-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-3);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 60px rgba(131, 56, 236, 0.3);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 17px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    color: rgba(245, 245, 245, 0.8);
}

.price-value {
    color: var(--neon-yellow);
    font-weight: 600;
}

.price-total {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--neon-pink);
    border-bottom: none;
    font-size: 22px;
}

.price-total .price-label,
.price-total .price-value {
    color: var(--neon-pink);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    background: var(--gradient-main);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: clamp(40px, 6vw, 72px);
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}


/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews-section {
    background: var(--dark-3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--dark-2);
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--neon-yellow);
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    color: rgba(245, 245, 245, 0.7);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.review-author strong {
    color: var(--neon-yellow);
    margin-left: 8px;
}

.review-city {
    color: rgba(245, 245, 245, 0.5);
    font-size: 13px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--dark);
    padding: 32px 0;
    text-align: center;
    color: rgba(245, 245, 245, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    .hero {
        min-height: 70vh;
    }
    .price-card {
        padding: 24px;
    }
}
/* ==========================================================================
   MUSIC TOGGLE BUTTON
   ========================================================================== */

.music-toggle {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 110, 0.5);
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
}

.music-toggle:hover {
    background: rgba(255, 0, 110, 0.3);
    border-color: var(--neon-pink);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 0, 110, 0.5);
}
