/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gold: #d4af37;
    --color-amber: #ffb347;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-light-gray: #f5f5f5;
    --font-display: 'Bebas Neue', cursive;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Page Load Animation */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(5px);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.98);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
        filter: blur(10px);
    }
    40% {
        opacity: 0.3;
        transform: translateY(50px) scale(0.95);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 146, 70, 0.3));
        transform: scale(0.9);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 50px rgba(206, 43, 55, 0.4));
        transform: scale(1.02);
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 146, 70, 0.6));
        transform: scale(1);
    }
}

@keyframes backgroundReveal {
    0% {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(20px) brightness(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0) brightness(1);
    }
}

/* Initial hidden state for page load */
body {
    animation: pageLoad 1.5s ease-out;
}

/* Hero section animations */
.hero {
    animation: backgroundReveal 2s ease-out;
}

.hero-content {
    animation: heroReveal 1.8s ease-out 0.3s both;
}

.hero-title {
    animation: titleGlow 2.5s ease-out 0.8s both;
}

.fade-in {
    animation-delay: 0.5s;
}

.slide-up {
    animation-delay: 0.7s;
}

.zoom-in {
    animation-delay: 0.9s;
}

/* Section Reveal Animations */
.section-reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card animations */
.experience-card,
.review-card,
.faq-item,
.countdown-item,
.artist-stat {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Sparkle Effect */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700, transparent);
    border-radius: 50%;
    animation: sparkleAnimation 3s ease-out forwards;
}

@keyframes sparkleAnimation {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(20vh) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(0);
    }
}

/* Enhanced hover effects for loaded elements */
.section-visible .experience-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.section-visible .countdown-item:hover {
    transform: scale(1.1);
}

/* Preloader effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    z-index: 10000;
    animation: preloaderFade 1.5s ease-out forwards;
}

@keyframes preloaderFade {
    0% {
        opacity: 1;
        visibility: visible;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 5px 22px rgba(212, 175, 55, 0.5);
    }
}

/* Замедленная и слабая анимация пульсации для мобильных устройств */
@media (max-width: 768px) {
    .cta-button {
        animation: pulse 6s ease-in-out infinite;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.zoom-in {
    animation: zoomIn 1s ease-out 0.6s both;
}

/* Hero Section - UPDATED */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;  /* CHANGED from center */
    justify-content: center;
    padding-top: 80px;  /* ADDED */
    background-image: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?w=1920') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #009246 0%, #ffffff 50%, #ce2b37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.gold-text {
    background: linear-gradient(45deg, #009246 0%, #ffffff 50%, #ce2b37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-white);
    opacity: 0.9;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.detail-item i {
    color: var(--color-gold);
    font-size: 1.3rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
    color: var(--color-black);
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    animation: pulse 3s ease-in-out infinite;
    margin-top: 20px;
    min-height: 60px;
    white-space: nowrap;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.cta-button i {
    font-size: 1.3rem;
    flex-shrink: 0;
    order: -1;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* CTA Container simplified */
.cta-container {
    position: relative;
    display: inline-block;
}

.cta-button {
    position: relative;
    z-index: 2;
}

.scroll-indicator {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 60px;
    color: var(--color-gold);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Button */
.contact-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    animation: contactPulse 3s ease-in-out infinite;
}

.contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

.contact-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: contactRipple 3s ease-out infinite;
    z-index: -1;
}

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

@keyframes contactRipple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: var(--color-dark);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.contact-modal.active .contact-modal-content {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-modal-close:hover {
    color: var(--color-gold);
}

.contact-modal h3 {
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.contact-modal p {
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    background: var(--color-black);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder {
    color: var(--color-gray);
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
    color: var(--color-black);
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: var(--color-dark);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-message.active .success-content {
    transform: scale(1);
}

.success-content i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.success-content p {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Countdown Section */
.countdown-section {
    padding: 80px 0;
    background: var(--color-dark);
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
    min-width: 110px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    opacity: 0.7;
}

/* Artist Section */
.artist-section {
    padding: 100px 0;
    background: var(--color-black);
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.artist-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.artist-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.artist-image.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

.artist-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.artist-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number-container {
    display: block;
    margin-bottom: 5px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
}

.plus {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
}

.stat-number, .plus {
    display: inline;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark), var(--color-black));
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 60px;
}

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

.experience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.experience-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--color-black);
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.review-card {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.stars {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-white);
}

.review-author {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.review-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.review-nav {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.review-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.08);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    background: var(--color-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-gold);
    font-size: 1rem;
}

.footer-payments {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.payment-icons {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    align-items: center;
    width: 280px;
}

.payment-logo {
    height: 20px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0.9;
    border-radius: 3px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.payment-logo:hover {
    opacity: 1;
    transform: translateY(-1px) scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.payment-info {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.4;
    margin: 0;
    text-align: left;
    max-width: 280px;
    width: 280px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Hero mobile fix */
    .hero {
        align-items: center !important;  /* Keep centered on tablets */
    }
    
    .hero-title {
        font-size: 4.5rem;
        line-height: 0.8;
        margin-bottom: 30px;
        margin-top: -20px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        font-weight: 300;
        opacity: 0.85;
        line-height: 1.5;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .event-details {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .detail-item {
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        min-height: 65px;
        gap: 12px;
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-text {
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        white-space: nowrap;
    }
    
    .cta-button i {
        font-size: 1.2rem;
        order: -1;
    }
    
    .countdown-wrapper {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 18px;
        min-width: 75px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .artist-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-slider {
        height: 350px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-slider {
        padding: 0 20px;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-payments {
        text-align: left;
        align-items: flex-start;
    }
    
    .payment-icons {
        justify-content: flex-start;
        gap: 6px;
        margin-bottom: 6px;
    }
    
    .payment-logo {
        height: 18px;
    }
    
    .payment-info {
        text-align: left;
        font-size: 0.8rem;
    }
}

/* Mobile specific fixes - UPDATED */
@media (max-width: 480px) {
    html {
        font-size: 16px;
        scroll-behavior: smooth;
    }
    
    body {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        position: relative;
        overflow-x: hidden;
        padding-top: 20px !important;  /* ADDED */
    }
    
    /* Hero section mobile fix - UPDATED */
    .hero {
        padding-top: 60px !important;  /* UPDATED */
        align-items: flex-start !important;  /* UPDATED */
        min-height: 100vh;
        display: flex !important;
    }
    
    .hero-content {
        padding: 40px 15px !important;  /* UPDATED */
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
        margin-top: 20px !important;  /* ADDED */
    }
    
    .hero-title {
        font-size: 4rem !important;
        line-height: 0.9 !important;  /* UPDATED */
        margin-bottom: 30px !important;  /* UPDATED */
        margin-top: 0 !important;  /* UPDATED */
        letter-spacing: 1.5px !important;
        text-align: center;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Spacing between Steve Hackett and Live a Milano */
    .hero-title br {
        display: block;
        content: "";
        margin-top: 15px;  /* ADDED */
    }
    
    .gold-text {
        display: block;
        margin-top: 10px;  /* ADDED */
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        font-weight: 300;
        opacity: 0.75;
        line-height: 1.3 !important;
        padding: 0 20px;
        max-width: 100%;
        margin-bottom: 25px !important;
        margin-top: 0 !important;  /* UPDATED */
    }
    
    .event-details {
        gap: 12px;
        padding: 0 10px;
    }
    
    .detail-item {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        line-height: 1.4;
        white-space: normal;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .detail-item i {
        font-size: 1.2rem;
    }
    
    .scroll-indicator {
        margin-top: 20px;
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile CTA Button optimizations */
    .cta-button {
        padding: 16px 20px !important;
        max-width: 280px !important;
        min-height: 60px !important;
        font-size: 0.9rem !important;
        gap: 10px !important;
    }
    
    .cta-text {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.3px;
        white-space: nowrap !important;
    }
    
    .cta-button i {
        font-size: 1.1rem !important;
        order: -1 !important;
    }
}

/* Ticket Selection Modal */
.ticket-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.ticket-modal.active {
    opacity: 1;
    visibility: visible;
}

.ticket-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.ticket-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.ticket-modal-close:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: rotate(90deg);
}

.ticket-modal h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.ticket-options {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.ticket-option {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-option:hover {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.ticket-option.premium {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    position: relative;
}

.ticket-option.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-amber) 100%);
}

.ticket-premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, var(--color-gold) 0%, var(--color-amber) 100%);
    color: var(--color-black);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ticket-header h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-display);
}

.ticket-description {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.ticket-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature i {
    color: var(--color-gold);
    font-size: 1rem;
}

/* Mobile Responsiveness for Ticket Modal */
@media (max-width: 768px) {
    .ticket-modal {
        padding: 10px;
    }
    
    .ticket-modal-content {
        padding: 20px;
        border-radius: 15px;
        max-height: 95vh;
    }
    
    .ticket-modal h3 {
        font-size: 2rem;
    }
    
    .ticket-header h4 {
        font-size: 1.4rem;
    }
    
    .ticket-price {
        font-size: 1.6rem;
    }
    
    .ticket-features {
        gap: 10px;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    .ticket-premium-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 15px;
        align-self: flex-start;
    }
}