/* Font Face Declarations will be moved to HTML for Laravel compatibility */

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

/* Global styles */
body {
    font-family: 'Futura PT Book', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    /* Background akan diset via inline style di HTML untuk Laravel compatibility */
    background-size: cover !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #dc2626 !important; /* Fallback color */
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

/* Animated Background - Removed to show body background image */
.animated-bg {
    display: none;
}

@keyframes textureMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.02) rotate(1deg); }
}

/* Floating particles - Minimal white particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
}

/* Main Container */
.main-container {
    position: relative;
    min-height: 100vh;
    z-index: 2;
}

/* Texture overlay untuk efek vintage */
.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.02) 2px,
            rgba(255,255,255,0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.02) 2px,
            rgba(0,0,0,0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 3;
    padding: 2rem 1rem;
}

/* Poster Content - Slight modernization while keeping poster style */
.poster-content {
    position: relative;
    padding: 2rem;
    animation: posterFloat 6s ease-in-out infinite;
}

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

/* Safety Pin Styles - Enhanced with subtle glow */
.safety-pin {
    position: absolute;
    width: 60px;
    height: 15px;
    background: linear-gradient(to bottom, #f3f4f6 0%, #d1d5db 50%, #9ca3af 100%);
    border-radius: 30px;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.4),
        inset 0 1px 3px rgba(255,255,255,0.6),
        inset 0 -1px 3px rgba(0,0,0,0.3),
        0 0 10px rgba(255,255,255,0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.safety-pin:hover {
    transform: scale(1.05);
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.5),
        inset 0 1px 3px rgba(255,255,255,0.6),
        inset 0 -1px 3px rgba(0,0,0,0.3),
        0 0 15px rgba(255,255,255,0.2);
}

.safety-pin::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #6b7280 30%, #374151 70%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

.safety-pin::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background: linear-gradient(to right, #9ca3af, #6b7280);
    border-radius: 2px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.3);
}

.safety-pin-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
}

.safety-pin-main {
    top: -10px;
    left: -20px;
    transform: rotate(25deg);
    width: 80px;
    height: 18px;
}

.safety-pin-bottom {
    bottom: 20px;
    right: 20%;
    transform: rotate(10deg);
}

/* Typography Styles - Enhanced from original poster */
.limited-seats-header {
    margin-bottom: 2rem;
    text-align: center;
    animation: titleGlow 4s ease-in-out infinite;
}

.limited-for-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    /* filter: drop-shadow(0 0 15px rgba(255,255,255,0.3)); */
    /* animation: imageGlow 4s ease-in-out infinite; */
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Fallback jika gambar tidak ada */
.limited-for-image:not([src]), 
.limited-for-image[src=""], 
.limited-for-image[src*="placeholder"] {
    display: none;
}

.limited-seats-header::after {
    content: "";
    display: block;
}

/* Show fallback text when image is missing */
.limited-seats-header:has(.limited-for-image:not([src])) .fallback-text,
.limited-seats-header:has(.limited-for-image[src=""]) .fallback-text {
    display: block;
}

.fallback-text {
    display: none;
}

.fallback-text .limited-text,
.fallback-text .seats-only {
    font-family: 'Futura PT', sans-serif;
    font-size: 2.5rem;
    color: white;
    text-shadow: 
        3px 3px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 15px rgba(0,0,0,0.6),
        0 0 20px rgba(255,255,255,0.2);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    animation: textPulse 3s ease-in-out infinite;
}

.fallback-text .seats-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 4px solid white;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
    box-shadow: 
        0 0 30px rgba(255,255,255,0.4),
        inset 0 0 30px rgba(255,255,255,0.1),
        0 8px 20px rgba(0,0,0,0.3);
    animation: circleFloat 3s ease-in-out infinite;
}

.fallback-text .seats-number {
    font-family: 'Chandelier', sans-serif;
    font-size: 2.5rem;
    color: white;
    font-weight: 400;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.7),
        0 0 10px rgba(255,255,255,0.3);
}

.limited-for-image:hover {
    transform: scale(1.02);
    /* filter: drop-shadow(0 0 20px rgba(255,255,255,0.5)); */
}

@keyframes imageGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(255,255,255,0.5)); }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(255,255,255,0.5)); }
}

.limited-text {
    font-family: 'Futura PT', sans-serif;
    font-size: 2.5rem;
    color: white;
    text-shadow: 
        3px 3px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 15px rgba(0,0,0,0.6),
        0 0 20px rgba(255,255,255,0.2);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    animation: textPulse 3s ease-in-out infinite;
}

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

.seats-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 4px solid white;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
    box-shadow: 
        0 0 30px rgba(255,255,255,0.4),
        inset 0 0 30px rgba(255,255,255,0.1),
        0 8px 20px rgba(0,0,0,0.3);
    animation: circleFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.seats-circle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(255,255,255,0.6),
        inset 0 0 30px rgba(255,255,255,0.2),
        0 12px 30px rgba(0,0,0,0.4);
}

@keyframes circleFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(5deg); }
}

.seats-number {
    font-family: 'Chandelier', sans-serif;
    font-size: 2.5rem;
    color: white;
    font-weight: 400;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.7),
        0 0 10px rgba(255,255,255,0.3);
}

.seats-only {
    font-family: 'Futura PT', sans-serif;
    font-size: 2.5rem;
    color: white;
    text-shadow: 
        3px 3px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 15px rgba(0,0,0,0.6),
        0 0 20px rgba(255,255,255,0.2);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    animation: textPulse 3s ease-in-out infinite;
}

.mitty-text {
    font-family: 'Chandelier', sans-serif;
    font-size: 3rem;
    color: white;
    letter-spacing: 8px;
    text-shadow: 
        4px 4px 0px #991b1b,
        -2px -2px 0px #dc2626,
        3px 3px 20px rgba(0,0,0,0.8),
        0 0 25px rgba(255,255,255,0.3);
    margin: 1rem 0;
    font-weight: 400;
    text-align: center;
    animation: artistGlow 4s ease-in-out infinite;
}

@keyframes artistGlow {
    0%, 100% { 
        text-shadow: 
            4px 4px 0px #991b1b,
            -2px -2px 0px #dc2626,
            3px 3px 20px rgba(0,0,0,0.8),
            0 0 25px rgba(255,255,255,0.3);
    }
    50% { 
        text-shadow: 
            4px 4px 0px #991b1b,
            -2px -2px 0px #dc2626,
            3px 3px 20px rgba(0,0,0,0.8),
            0 0 35px rgba(255,255,255,0.5);
    }
}

/* MITTY Logo with Safety Pin Styling */
.mitty-pin-container {
    position: relative;
    display: inline-block;
    margin: 1rem 0;
    z-index: 15;
}

.safety-pin-image {
    rotate: 12deg;
    position: absolute;
    /* Positioning untuk desktop default */
    top: -180px;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
    max-height: 400px;
    width: auto;
    z-index: 20;
    animation: pinFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
    transform-origin: center center;
}

.safety-pin-image:hover {
    transform: translateX(-50%) rotate(-10deg) scale(1.02);
}

@keyframes pinFloat {
    0%, 100% { 
        transform: translateX(-50%) rotate(-12deg) translateY(0px);
    }
    50% { 
        transform: translateX(-50%) rotate(-12deg) translateY(-5px);
    }
}

.mitty-logo-image {
    top: 10px;
    max-height: 45px;
    width: auto;
    margin: 0;
    position: relative;
    z-index: 15;
    /* filter: 
        drop-shadow(2px 2px 0px #991b1b)
        drop-shadow(-1px -1px 0px #dc2626)
        drop-shadow(2px 2px 15px rgba(0,0,0,0.8))
        drop-shadow(0 0 15px rgba(255,255,255,0.3)); */
    animation: 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mitty-logo-image:hover {
    transform: scale(1.05);
    /* filter: 
        drop-shadow(4px 4px 0px #991b1b)
        drop-shadow(-2px -2px 0px #dc2626)
        drop-shadow(3px 3px 20px rgba(0,0,0,0.8))
        drop-shadow(0 0 35px rgba(255,255,255,0.5)); */
}

@keyframes logoGlow {
    0%, 100% { 
        filter: 
            drop-shadow(4px 4px 0px #991b1b)
            drop-shadow(-2px -2px 0px #dc2626)
            drop-shadow(3px 3px 20px rgba(0,0,0,0.8))
            drop-shadow(0 0 25px rgba(255,255,255,0.3));
    }
    50% { 
        filter: 
            drop-shadow(4px 4px 0px #991b1b)
            drop-shadow(-2px -2px 0px #dc2626)
            drop-shadow(3px 3px 20px rgba(0,0,0,0.8))
            drop-shadow(0 0 35px rgba(255,255,255,0.5));
    }
}

.main-title-section {
    margin: 2rem 0;
    padding-top: 3rem;
    text-align: center;
    position: relative;
}

.main-title {
    font-family: 'Futura PT', sans-serif;
    font-size: 4rem;
    color: white;
    line-height: 0.9;
    text-shadow: 
        5px 5px 0px #991b1b,
        -2px -2px 0px #dc2626,
        4px 4px 25px rgba(0,0,0,0.9),
        0 0 30px rgba(255,255,255,0.3);
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    z-index: 3;
    animation: mainTitleFloat 5s ease-in-out infinite;
}

@keyframes mainTitleFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.02) rotate(1deg); }
}

/* Main Title Image Styling */
.main-title-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    margin: 0;
    position: relative;
    z-index: 3;
    /* filter: 
        drop-shadow(5px 5px 0px #991b1b)
        drop-shadow(-2px -2px 0px #dc2626)
        drop-shadow(4px 4px 25px rgba(0,0,0,0.9))
        drop-shadow(0 0 30px rgba(255,255,255,0.3)); */
    animation: mainTitleImageFloat 5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.main-title-image:hover {
    transform: scale(1.02);
    /* filter: 
        drop-shadow(5px 5px 0px #991b1b)
        drop-shadow(-2px -2px 0px #dc2626)
        drop-shadow(4px 4px 25px rgba(0,0,0,0.9))
        drop-shadow(0 0 40px rgba(255,255,255,0.5)); */
}

@keyframes mainTitleImageFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.02) rotate(1deg); }
}

.event-details {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Event Details Image Styling */
.event-details-image-section {
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.event-details-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    margin: 0 auto;
    /* filter: 
        drop-shadow(3px 3px 0px #991b1b)
        drop-shadow(-1px -1px 0px #dc2626)
        drop-shadow(2px 2px 15px rgba(0,0,0,0.8))
        drop-shadow(0 0 20px rgba(255,255,255,0.2)); */
    animation: eventDetailsFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.event-details-image:hover {
    transform: scale(1.02);
    /* filter: 
        drop-shadow(3px 3px 0px #991b1b)
        drop-shadow(-1px -1px 0px #dc2626)
        drop-shadow(2px 2px 15px rgba(0,0,0,0.8))
        drop-shadow(0 0 30px rgba(255,255,255,0.4)); */
}

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

.event-details-fallback {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.detail-section {
    text-align: center;
    transition: all 0.3s ease;
}

.detail-section:hover {
    transform: translateY(-3px);
}

.detail-title {
    font-family: 'Futura PT', sans-serif;
    font-size: 2rem;
    color: white;
    text-shadow: 
        3px 3px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 12px rgba(0,0,0,0.6),
        0 0 15px rgba(255,255,255,0.2);
    margin: 0.5rem 0;
    line-height: 1;
    animation: detailFloat 4s ease-in-out infinite;
}

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

.detail-subtitle {
    font-family: 'Futura PT', sans-serif;
    font-size: 1.8rem;
    color: white;
    text-shadow: 
        2px 2px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 10px rgba(0,0,0,0.6),
        0 0 12px rgba(255,255,255,0.2);
    margin: 0.3rem 0;
    line-height: 1;
}

.detail-subtitle.margin-bottom {
    margin-bottom: 1rem;
}

.showcase-badge,
.album-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 3px solid white;
    border-radius: 25px;
    background: rgba(255,255,255,0.15);
    margin: 0.5rem 0;
    box-shadow: 
        0 0 15px rgba(255,255,255,0.3),
        inset 0 0 15px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.showcase-badge:hover,
.album-badge:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.25);
    box-shadow: 
        0 0 20px rgba(255,255,255,0.5),
        inset 0 0 20px rgba(255,255,255,0.2);
}

.showcase-badge span,
.album-badge span {
    font-family: 'Futura PT', sans-serif;
    font-size: 1rem;
    color: white;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.6),
        0 0 8px rgba(255,255,255,0.3);
}

.date-venue-section {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Date Venue Image Styling */
.date-venue-image-section {
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.date-venue-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    margin: 0 auto;
    /* filter: 
        drop-shadow(3px 3px 0px #991b1b)
        drop-shadow(-1px -1px 0px #dc2626)
        drop-shadow(2px 2px 15px rgba(0,0,0,0.8))
        drop-shadow(0 0 20px rgba(255,255,255,0.2)); */
    animation: dateVenueFloat 4.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.date-venue-image:hover {
    transform: scale(1.02);
    /* filter: 
        drop-shadow(3px 3px 0px #991b1b)
        drop-shadow(-1px -1px 0px #dc2626)
        drop-shadow(2px 2px 15px rgba(0,0,0,0.8))
        drop-shadow(0 0 30px rgba(255,255,255,0.4)); */
}

@keyframes dateVenueFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg);
    }
    50% { 
        transform: translateY(-2px) rotateX(1deg);
    }
}

.date-venue-fallback {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.date-info,
.venue-info {
    text-align: center;
    transition: all 0.3s ease;
}

.date-info:hover,
.venue-info:hover {
    transform: translateY(-5px);
}

.time {
    font-family: 'Chandelier', sans-serif;
    font-size: 2.5rem;
    color: white;
    text-shadow: 
        3px 3px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 12px rgba(0,0,0,0.6),
        0 0 15px rgba(255,255,255,0.3);
    margin: 0;
    letter-spacing: 2px;
}

.date {
    font-family: 'Chandelier', sans-serif;
    font-size: 4rem;
    color: white;
    text-shadow: 
        5px 5px 0px #991b1b,
        -2px -2px 0px #dc2626,
        4px 4px 25px rgba(0,0,0,0.9),
        0 0 30px rgba(255,255,255,0.4);
    margin: 0;
    letter-spacing: 3px;
    line-height: 0.8;
    animation: dateGlow 3s ease-in-out infinite;
}

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

.venue {
    font-family: 'Futura PT', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-shadow: 
        2px 2px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 10px rgba(0,0,0,0.6),
        0 0 12px rgba(255,255,255,0.2);
    margin: 0.5rem 0;
    line-height: 1.2;
}

.location {
    font-family: 'Futura PT', sans-serif;
    font-size: 2rem;
    color: white;
    text-shadow: 
        3px 3px 0px #991b1b,
        -1px -1px 0px #dc2626,
        2px 2px 12px rgba(0,0,0,0.6),
        0 0 15px rgba(255,255,255,0.3);
    margin: 0;
}

/* Claim Ticket Button - Enhanced but maintaining poster theme */
.btn-claim-ticket {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    border: 4px solid white;
    color: white;
    font-family: 'Chandelier', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 10px rgba(255,255,255,0.3);
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.4),
        inset 0 2px 5px rgba(255,255,255,0.4),
        0 0 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 
            0 10px 25px rgba(0,0,0,0.4),
            inset 0 2px 5px rgba(255,255,255,0.4),
            0 0 20px rgba(251, 191, 36, 0.3);
    }
    50% { 
        box-shadow: 
            0 15px 35px rgba(0,0,0,0.5),
            inset 0 2px 5px rgba(255,255,255,0.4),
            0 0 30px rgba(251, 191, 36, 0.5);
    }
}

.btn-claim-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-claim-ticket:hover::before {
    left: 100%;
}

.btn-claim-ticket:hover {
    background: linear-gradient(45deg, #f59e0b, #d97706, #b45309);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.5),
        inset 0 2px 5px rgba(255,255,255,0.4),
        0 0 35px rgba(251, 191, 36, 0.6);
    color: white;
    border-color: white;
}

/* Sold Out Button - Disabled state styling */
.btn-sold-out {
    background: linear-gradient(45deg, #6b7280, #4b5563, #374151);
    border: 4px solid #9ca3af;
    color: #d1d5db;
    font-family: 'Chandelier', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 10px rgba(255,255,255,0.1);
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.3),
        inset 0 2px 5px rgba(255,255,255,0.1),
        0 0 20px rgba(107, 114, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-sold-out:disabled {
    background: linear-gradient(45deg, #6b7280, #4b5563, #374151);
    color: #d1d5db;
    border-color: #9ca3af;
    cursor: not-allowed;
}

.btn-sold-out::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(220, 38, 38, 0.1) 10px,
        rgba(220, 38, 38, 0.1) 20px
    );
}

.event-details {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.detail-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.detail-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.detail-title {
    font-family: 'Futura PT', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
    line-height: 1;
}

.detail-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #555;
    font-weight: 600;
    margin: 0.5rem 0;
    line-height: 1;
}

.showcase-badge,
.album-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
    border-radius: 25px;
    margin: 1rem 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.date-venue-section {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.date-info,
.venue-info {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.date-info:hover,
.venue-info:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.time {
    font-family: 'Chandelier', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 2px;
}

.date {
    font-family: 'Chandelier', sans-serif;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 3px;
    line-height: 0.8;
}

.venue {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #555;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.2;
}

.location {
    font-family: 'Futura PT', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Claim Ticket Button */
.btn-claim-ticket {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 
        0 15px 35px rgba(255, 107, 107, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 25px 50px rgba(255, 107, 107, 0.6); }
}

.btn-claim-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-claim-ticket:hover::before {
    left: 100%;
}

.btn-claim-ticket:hover {
    background: linear-gradient(135deg, #4ECDC4, #45B7D1, #96CEB4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(78, 205, 196, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
    color: white;
}

/* Modal Styles - Maintaining red theme */
.modal-content {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(10px);
}

.modal-header {
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    padding: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.form-control:focus {
    border-color: #dc2626;
    box-shadow: 
        0 0 0 0.2rem rgba(220, 38, 38, 0.25),
        0 0 15px rgba(220, 38, 38, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.form-control.is-valid {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.05);
}

.form-control.is-invalid {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .safety-pin-image {
        max-height: 450px;
        top: -30px;
        left: 50%;
        transform: translateX(-50%) rotate(-12deg);
    }
}

@media (max-width: 1024px) {
    .safety-pin-image {
        max-height: 340px;
        top: -20px;
        left: 50%;
        transform: translateX(-50%) rotate(-12deg);
    }

    .main-title-section {
        margin: 2rem 0;
        padding-top: 1rem;
        text-align: center;
        position: relative;
    }
}

@media (max-width: 820px) {
    .safety-pin-image {
        max-height: 340px;
        top: -20px;
        left: 50%;
        transform: translateX(-50%) rotate(-12deg);
    }

    .main-title-section {
        margin: 2rem 0;
        padding-top: 0rem;
        text-align: center;
        position: relative;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 1rem 0.5rem;
    }
    
    .poster-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .limited-for-image {
        max-height: 180px;
    }
    
    .mitty-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .mitty-logo-image {
        max-height: 35px;
    }
    
    .safety-pin-image {
        max-height: 340px;
        top: -20px;
        left: 50%;
        transform: translateX(-50%) rotate(-12deg);
    }
    
    .main-title-image {
        max-height: 220px;
    }
    
    .event-details-image {
        max-height: 160px;
    }
    
    .date-venue-image {
        max-height: 100px;
    }
    
    .btn-claim-ticket,
    .btn-sold-out {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .limited-for-image {
        max-height: 150px;
    }
    
    .mitty-text {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .mitty-logo-image {
        max-height: 30px;
    }
    
    .safety-pin-image {
        max-height: 250px;
        top: -10px;
        left: 50%;
        transform: translateX(-50%) rotate(-12deg);
    }

    .main-title-section {
        margin: 2rem 0;
        padding-top: 1rem;
        text-align: center;
        position: relative;
    }
    
    .main-title-image {
        max-height: 180px;
    }
    
    .event-details-image {
        max-height: 120px;
    }
    
    .date-venue-image {
        max-height: 80px;
    }
    
    .btn-claim-ticket,
    .btn-sold-out {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        letter-spacing: 1px;
        margin-top: 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .detail-title {
        font-size: 1.3rem;
    }
    
    .detail-subtitle {
        font-size: 1.1rem;
    }
    
    .time {
        font-size: 1.8rem;
    }
    
    .date {
        font-size: 2.5rem;
    }
    
    .venue {
        font-size: 1rem;
    }
    
    .location {
        font-size: 1.3rem;
    }
    
    .btn-claim-ticket {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        letter-spacing: 1px;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .detail-section,
    .date-info,
    .venue-info {
        padding: 1rem;
    }
}

@media (max-width: 344px) {
    .mitty-logo-image {
        max-height: 25px;
    }
    
    .safety-pin-image {
        max-height: 200px;
        top: -10px;
        left: 50%;
        transform: translateX(-50%) rotate(-12deg);
    }

    .main-title-section {
        margin: 2rem 0;
        padding-top: 0rem;
        text-align: center;
        position: relative;
    }
}

/* Page Load Animation */
.page-loaded .poster-content {
    animation: slideInUp 1s ease-out;
}

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

/* Enhanced Email Validation Styles */
.form-control.email-validating {
    border-color: #fbbf24 !important;
    background-color: rgba(251, 191, 36, 0.1) !important;
}

.form-control.email-validating:focus {
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25) !important;
}

.email-validation-feedback {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.email-validation-feedback.checking {
    background-color: rgba(251, 191, 36, 0.1);
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.email-validation-feedback.invalid {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.email-validation-feedback.valid {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.email-validation-feedback i {
    margin-right: 0.5rem;
}

/* Form validation animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-control.shake {
    animation: shake 0.5s ease-in-out;
}

/* Loading state for email validation */
.email-loading {
    position: relative;
}

.email-loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Checkbox validation styles */
.form-check-input.is-invalid {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
}

.form-check-input.is-valid {
    border-color: #16a34a;
    background-color: rgba(34, 197, 94, 0.1);
}

.form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.form-check-input.is-valid:focus {
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

/* Simple checkbox styling */
.form-check {
    display: flex !important;
    flex-direction: column !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-bottom: 1rem !important;
    /* Override Bootstrap defaults */
    padding-left: 1rem !important;
    min-height: auto !important;
}

.form-check .checkbox-content {
    display: flex !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.form-check-input {
    width: 1.2rem !important;
    height: 1.2rem !important;
    margin: 0 0.75rem 0 0 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    position: static !important;
}

.form-check-input:checked {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.form-check-label {
    cursor: pointer !important;
    color: #333 !important;
    font-weight: 500 !important;
    flex: 1 !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
}

.form-check-label strong {
    color: #dc3545 !important;
}

.form-check-label small {
    color: #6c757d !important;
    font-size: 0.875rem !important;
}

/* Error message styling for checkbox */
.form-check .invalid-feedback {
    margin-top: 0.5rem !important;
    padding-left: 0 !important;
    width: 100% !important;
    font-size: 0.875rem !important;
    color: #dc3545 !important;
    display: block !important;
}

/* Enhanced form validation feedback */
.invalid-feedback {
    display: block !important;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.valid-feedback {
    display: block !important;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #16a34a;
    background-color: rgba(34, 197, 94, 0.1);
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid #fbbf24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.loading-text h4 {
    margin: 0 0 0.5rem 0;
    font-family: 'Chandelier', sans-serif;
    font-size: 1.5rem;
    color: #fbbf24;
}

.loading-text p {
    margin: 0;
    font-family: 'Futura PT', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Prevent body scroll when overlay is active */
.body-no-scroll {
    overflow: hidden;
}

/* Submit button states */
.btn-submitting {
    background: linear-gradient(45deg, #6b7280, #4b5563) !important;
    color: #d1d5db !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    pointer-events: none;
}

.btn-submitting:hover {
    background: linear-gradient(45deg, #6b7280, #4b5563) !important;
    transform: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
}

/* Success and Error notification styles */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    /* color: white; */
    font-family: 'Futura PT', sans-serif;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    opacity: 0;
}

.notification-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-toast.success {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 2px solid #34d399;
}

.notification-toast.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 2px solid #f87171;
}

.notification-toast.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: 2px solid #60a5fa;
}

.notification-toast .notification-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Datepicker Custom Styling */
.flatpickr-calendar {
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid #dc3545 !important;
    font-family: 'Futura PT', Arial, sans-serif !important;
}

.flatpickr-calendar.open {
    z-index: 9999 !important;
}

.flatpickr-months {
    background: #dc3545 !important;
    border-radius: 8px 8px 0 0 !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: white !important;
}

.flatpickr-weekdays {
    background: #f8f9fa !important;
}

.flatpickr-weekday {
    color: #dc3545 !important;
    font-weight: 600 !important;
}

.flatpickr-day {
    color: #333 !important;
    border-radius: 6px !important;
    margin: 1px !important;
}

.flatpickr-day:hover {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}

.flatpickr-day.selected {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}

.flatpickr-day.today {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
    font-weight: bold !important;
}

.flatpickr-day.today:hover {
    background: #dc3545 !important;
    color: white !important;
}

.numInputWrapper {
    border-radius: 5px !important;
}

.numInputWrapper:hover {
    background: rgba(220, 53, 69, 0.1) !important;
}

.flatpickr-monthDropdown-months,
.numInput {
    background: white !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 4px !important;
    color: #333 !important;
}

.flatpickr-monthDropdown-months:focus,
.numInput:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Input group styling for datepicker */
.input-group-text {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.form-control.datepicker {
    cursor: pointer;
}

.input-group:focus-within .input-group-text {
    border-color: #dc3545;
    color: #dc3545;
}

.input-group:focus-within .form-control {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}