:root {
        /* Paleta Pop-Art 60s */;
        --pop-orange: #FF5938;
        --pop-yellow: #FFD23F;
        --pop-blue: #118AB2;
        --pop-pink: #EF476F;
        --pop-bg: #F4F1EA;
        /* Papel crema vintage */;
        --pop-dark: #2D232E;
    }

.font-groovy {
            font-family: 'Shrikhand', cursive;
            font-weight: normal;
            letter-spacing: 1px;
        }

.font-typewriter {
            font-family: 'Courier Prime', monospace;
            font-weight: bold;
        }

.container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

.magazine-hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            background: var(--pop-blue);
            border: 4px solid var(--pop-dark);
            border-radius: 60px 20px 60px 20px;
            padding: 40px 20px;
            box-shadow: 12px 12px 0px var(--pop-dark);
            margin-bottom: 50px;
            overflow: hidden;
            gap: 30px;
            position: relative;
        }

.hero-text {
            flex: 1;
            min-width: 300px;
            color: var(--pc-blanco);
            text-align: left;
            z-index: 2;
            padding: 0 20px;
        }

.hero-image-container {
            flex: 1;
            min-width: 300px;
            text-align: center;
            z-index: 2;
        }

.vinyl-container {
            position: relative;
            width: 280px;
            height: 280px;
            margin: 0 auto;
            filter: drop-shadow(10px 10px 0px var(--pop-dark));
        }

.vinyl-record {
            width: 100%;
            height: 100%;
            background: #1a1a1a;
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 0;
            animation: spin 3s linear infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid var(--pop-dark);
        }

.vinyl-grooves {
            width: 90%;
            height: 90%;
            border-radius: 50%;
            border: 2px solid #333;
            position: absolute;
            box-shadow: inset 0 0 0 10px #1a1a1a, inset 0 0 0 12px #333, inset 0 0 0 22px #1a1a1a, inset 0 0 0 24px #333, inset 0 0 0 34px #1a1a1a, inset 0 0 0 36px #333;
        }

.vinyl-label {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            z-index: 2;
            border: 3px solid var(--pop-yellow);
            overflow: hidden;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.vinyl-label img {
            width: 90%;
            height: auto;
            object-fit: contain;
        }

.vinyl-hole {
            width: 12px;
            height: 12px;
            background: var(--pop-bg);
            border-radius: 50%;
            position: absolute;
            z-index: 3;
            border: 2px solid #ccc;
        }

.vinyl-tonearm {
            position: absolute;
            top: 20px;
            right: -15px;
            width: 20px;
            height: 140px;
            background: silver;
            border-radius: 10px;
            transform-origin: top center;
            transform: rotate(35deg);
            z-index: 4;
            border: 2px solid var(--pop-dark);
        }

.vinyl-tonearm::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: -10px;
            width: 30px;
            height: 40px;
            background: #444;
            border-radius: 5px;
            border: 2px solid var(--pop-dark);
            transform: rotate(-15deg);
        }

.vinyl-tonearm::before {
            content: "";
            position: absolute;
            top: 5px;
            left: 5px;
            width: 10px;
            height: 10px;
            background: var(--pop-dark);
            border-radius: 50%;
        }

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

.issue-badge {
            background: var(--pop-yellow);
            color: var(--pop-dark);
            font-family: 'Courier Prime', monospace;
            font-size: 1rem;
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 20px;
            border: 2px solid var(--pop-dark);
            display: inline-block;
            margin-bottom: 15px;
            transform: rotate(-5deg);
            box-shadow: 3px 3px 0 var(--pop-dark);
        }

.magazine-hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 5px;
            text-shadow: 4px 4px 0px var(--pop-dark);
            color: var(--pop-pink);
        }

.magazine-hero h2 {
            font-family: 'Shrikhand', cursive;
            font-size: 2.5rem;
            font-weight: normal;
            color: var(--pop-yellow);
            text-shadow: 3px 3px 0 var(--pop-dark);
            margin-bottom: 15px;
            line-height: 1.1;
            letter-spacing: 1px;
        }

.magazine-hero p {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.6;
        }

.emotional-hook {
            background: var(--pc-blanco);
            border: 4px solid var(--pop-dark);
            padding: 30px;
            text-align: center;
            border-radius: 50% 20% / 10% 40%;
            margin: 0 auto 50px;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--pop-dark);
            box-shadow: 8px 8px 0px var(--pop-pink);
            max-width: 800px;
        }

.emotional-hook strong {
            font-size: 1.8rem;
            color: var(--pop-orange);
            display: block;
            margin-bottom: 10px;
        }

.section-title {
            font-size: 3rem;
            color: var(--pop-dark);
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

.section-title::after {
            content: "";
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 15px;
            background: var(--pop-yellow);
            z-index: -1;
        }

.timeline {
            position: relative;
            max-width: 600px;
            margin: 0 auto 60px;
            padding-left: 40px;
        }

.timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 16px;
            height: 100%;
            width: 8px;
            background: var(--pop-dark);
            border-radius: 10px;
        }

.timeline-item {
            position: relative;
            margin-bottom: 35px;
            padding-left: 20px;
            cursor: pointer;
            transition: 0.2s;
        }

.timeline-item:hover {
            transform: translateX(10px);
        }

.timeline-item::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 5px;
            width: 28px;
            height: 28px;
            background: var(--pop-yellow);
            border: 4px solid var(--pop-dark);
            border-radius: 50%;
            z-index: 2;
            transition: 0.2s;
        }

.timeline-item:hover::before {
            background: var(--pop-pink);
            transform: scale(1.2);
        }

.timeline-content {
            background: var(--pc-blanco);
            border: 4px solid var(--pop-dark);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 8px 8px 0px var(--pop-blue);
            transition: 0.2s;
            display: flex;
            flex-direction: column;
            gap: 5px;
            text-align: left;
        }

.timeline-item:nth-child(even) .timeline-content {
            box-shadow: 8px 8px 0px var(--pop-pink);
        }

.timeline-item:hover .timeline-content {
            background: var(--pop-yellow);
            box-shadow: 8px 8px 0px var(--pop-dark);
        }

.timeline-time {
            font-family: 'Courier Prime', monospace;
            font-size: 1.2rem;
            font-weight: bold;
            background: var(--pop-dark);
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            align-self: flex-start;
            margin-bottom: 5px;
            border: 2px solid white;
            box-shadow: 3px 3px 0 var(--pop-orange);
            transform: rotate(-2deg);
        }

.timeline-title {
            font-size: 1.8rem;
            font-weight: 900;
            line-height: 1.1;
            font-family: 'Shrikhand', cursive;
            color: var(--pop-orange);
            letter-spacing: 1px;
            margin-top: 5px;
        }

.click-hint {
            font-size: 0.85rem;
            font-weight: 800;
            color: #555;
            text-transform: uppercase;
            margin-top: 10px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.8);
            padding: 5px 12px;
            border-radius: 10px;
            border: 2px dashed var(--pop-dark);
            align-self: flex-start;
        }

.gala-spread {
            background: var(--pop-dark);
            color: var(--pc-blanco);
            border: 4px solid var(--pop-yellow);
            border-radius: 40px;
            padding: 60px 30px;
            text-align: center;
            position: relative;
            box-shadow: 12px 12px 0px var(--pop-orange);
            margin-bottom: 50px;
            overflow: hidden;
        }

.gala-spread::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
            background-size: 20px 20px;
            z-index: 0;
        }

.gala-content {
            position: relative;
            z-index: 1;
        }

.gala-spread h3 {
            font-size: 3.5rem;
            color: var(--pop-pink);
            line-height: 1.1;
            margin-bottom: 15px;
            text-shadow: 3px 3px 0px var(--pop-bg);
        }

.gala-spread p {
            font-size: 1.15rem;
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

.guest-box {
            background: var(--pop-blue);
            border: 3px solid var(--pop-yellow);
            padding: 15px;
            border-radius: 15px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: bold;
            transform: rotate(2deg);
            color: #fff;
        }

.btn-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--pop-orange);
            border: 3px solid var(--pop-dark);
            color: var(--pop-dark);
            padding: 12px 25px;
            font-weight: 900;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.2s;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            box-shadow: 5px 5px 0px var(--pop-dark);
        }

.btn-action:hover {
            transform: translateY(-3px);
            box-shadow: 8px 8px 0px var(--pop-dark);
            background: var(--pop-pink);
            color: white;
        }

.btn-action:active {
            transform: translateY(2px);
            box-shadow: 3px 3px 0px var(--pop-dark);
        }

.tickets-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
        }

.ticket {
            background: var(--pc-blanco);
            border: 4px solid var(--pop-dark);
            border-radius: 15px;
            padding: 30px 20px 20px;
            position: relative;
            text-align: center;
            width: 100%;
            max-width: 320px;
            box-shadow: 8px 8px 0px var(--pop-blue);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

.ticket.combo {
            background: var(--pop-yellow);
            box-shadow: 8px 8px 0px var(--pop-pink);
            transform: scale(1.05);
        }

.ticket::before,
        .ticket::after {
            content: '';
            position: absolute;
            top: 45%;
            width: 30px;
            height: 30px;
            background: var(--pop-bg);
            border: 4px solid var(--pop-dark);
            border-radius: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

.ticket::before {
            left: -18px;
        }

.ticket::after {
            right: -18px;
        }

.ticket-rip {
            border-top: 3px dashed var(--pop-dark);
            margin: 20px 0;
            width: 100%;
        }

.ticket-title {
            font-family: 'Shrikhand', cursive;
            font-size: 1.8rem;
            line-height: 1.1;
            margin-bottom: 10px;
        }

.ticket-price {
            font-size: 3rem;
            font-weight: 900;
            font-family: 'Courier Prime', monospace;
            color: var(--pop-orange);
            text-shadow: 2px 2px 0px var(--pop-dark);
            margin: 10px 0;
        }

.qty-selector {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            z-index: 20;
            position: relative;
            margin-top: 10px;
        }

.qty-btn {
            background: var(--pop-dark);
            color: white;
            border: 2px solid var(--pop-dark);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 2px 2px 0px var(--pop-dark);
        }

.qty-btn:hover {
            background: var(--pop-pink);
            transform: scale(1.1);
        }

.qty-btn:active {
            transform: scale(0.95);
        }

.qty-input {
            width: 60px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: bold;
            border: 3px solid var(--pop-dark);
            border-radius: 10px;
            padding: 5px;
            outline: none;
            font-family: 'Courier Prime', monospace;
        }

.cart-total-box {
            background: var(--pop-dark);
            color: white;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.5rem;
            font-weight: 900;
            border: 4px solid var(--pop-pink);
            box-shadow: 8px 8px 0px var(--pop-yellow);
        }

.purchase-steps {
            background: var(--pc-blanco);
            border: 4px solid var(--pop-dark);
            padding: 35px;
            border-radius: 25px;
            margin-bottom: 50px;
            box-shadow: 10px 10px 0px var(--pop-yellow);
        }

.step-list {
            list-style: none;
            font-size: 1.15rem;
            font-weight: 600;
            counter-reset: steps;
            margin-bottom: 25px;
        }

.step-list li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 50px;
        }

.step-list li::before {
            counter-increment: steps;
            content: counter(steps);
            position: absolute;
            left: 0;
            top: -5px;
            background: var(--pop-dark);
            color: var(--pop-bg);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-family: 'Shrikhand', cursive;
        }

.copy-box-modern {
            display: flex;
            flex-wrap: nowrap;
            align-items: stretch;
            background: white;
            border: 3px solid var(--pop-dark);
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 4px 4px 0 var(--pop-blue);
            margin-bottom: 15px;
            width: 100%;
            max-width: 500px;
        }

.copy-box-modern .label {
            background: var(--pop-yellow);
            padding: 12px 20px;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            border-right: 3px solid var(--pop-dark);
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

.copy-box-modern input {
            flex: 1;
            min-width: 0;
            border: none;
            padding: 12px 15px;
            font-size: 1.1rem;
            font-weight: bold;
            font-family: 'Courier Prime', monospace;
            outline: none;
            background: transparent;
            color: var(--pop-dark);
            text-overflow: ellipsis;
        }

.copy-box-modern button {
            background: var(--pop-dark);
            color: white;
            border: none;
            border-left: 3px solid var(--pop-dark);
            padding: 12px 25px;
            cursor: pointer;
            font-weight: 900;
            transition: 0.2s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }

.copy-box-modern button:hover {
            background: var(--pop-pink);
        }

.btn-direction {
            background: var(--pop-yellow);
            color: var(--pop-dark);
            border: 3px solid var(--pop-dark);
            border-radius: 50px;
            padding: 8px 15px;
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.95rem;
            box-shadow: 3px 3px 0 var(--pop-dark);
            transition: 0.2s;
            margin-top: 10px;
        }

.btn-direction:hover {
            background: var(--pop-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 5px 5px 0 var(--pop-dark);
        }

.payment-methods {
            margin-bottom: 25px;
            text-align: left;
        }

.payment-option {
            background: var(--pc-blanco);
            border: 3px solid var(--pop-dark);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
        }

.payment-option:hover {
            background: var(--pop-yellow);
            box-shadow: 4px 4px 0 var(--pop-dark);
            transform: translateY(-2px);
        }

.payment-option input[type="radio"] {
            margin-right: 15px;
            transform: scale(1.5);
            accent-color: var(--pop-pink);
            cursor: pointer;
        }

.payment-option label {
            cursor: pointer;
            width: 100%;
            font-size: 1.1rem;
            color: var(--pop-dark);
        }

.modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(45, 35, 46, 0.85);
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

.modal-content {
            background: var(--pop-bg);
            border: 4px solid var(--pop-dark);
            padding: 40px 30px;
            max-width: 550px;
            width: 100%;
            border-radius: 20px;
            box-shadow: 12px 12px 0px var(--pop-yellow);
            position: relative;
            animation: popIn 0.3s ease-out;
        }

@keyframes popIn {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

.close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            font-weight: 900;
            color: var(--pop-dark);
            background: var(--pc-blanco);
            border: 2px solid var(--pop-dark);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }

.close-modal:hover {
            background: var(--pop-pink);
            color: white;
        }

.modal-title {
            font-family: 'Shrikhand', cursive;
            font-size: 2.2rem;
            color: var(--pop-blue);
            margin-bottom: 15px;
            line-height: 1.1;
        }

.modal-text {
            font-size: 1.05rem;
            margin-bottom: 20px;
        }

.modal input,
        .modal select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 3px solid var(--pop-dark);
            font-family: 'Inter', sans-serif;
            border-radius: 10px;
            outline: none;
        }

.modal input:focus,
        .modal select:focus {
            border-color: var(--pop-pink);
        }

.action-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }

.guests-list {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 20px;
        }

.guests-list li {
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid var(--pop-pink);
            font-size: 1.05rem;
        }

@media (max-width: 768px) {
            .magazine-hero h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .gala-spread h3 {
                font-size: 2.5rem;
            }

            .copy-box-modern {
                flex-wrap: wrap;
                border-radius: 20px;
            }
            .copy-box-modern .label {
                width: 100%;
                border-right: none;
                border-bottom: 3px solid var(--pop-dark);
                justify-content: center;
                padding: 8px;
            }
            .copy-box-modern input {
                text-align: center;
                font-size: 0.95rem;
            }
            .copy-box-modern button {
                padding: 10px 15px;
            }
        }