/* ============================================
   BLYND × YMNKY - DARK METAL THEME
   ============================================ */

:root {
    /* Muted accent colors */
    --accent-red: #8b0000;
    --accent-red-bright: #cc0000;
    --accent-gray: #555560;
    --accent-light: #888890;
    
    /* Dark Gray Background Colors - lighter */
    --bg-primary: #1a1a1e;
    --bg-secondary: #202025;
    --bg-tertiary: #26262b;
    --bg-card: rgba(32, 32, 38, 0.95);
    --bg-card-hover: rgba(40, 40, 48, 0.98);
    
    /* Text Colors - more visible */
    --text-primary: #e8e8ec;
    --text-secondary: #9090a0;
    --text-muted: #606070;
    --text-dark: #404048;
    
    /* Subtle glows */
    --glow-red: 0 0 20px rgba(139, 0, 0, 0.4);
    --glow-red-intense: 0 0 10px rgba(204, 0, 0, 0.5), 0 0 30px rgba(139, 0, 0, 0.3);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   DARK BACKGROUNDS - minimal effects
   ============================================ */

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
    filter: brightness(0.4) contrast(1.2);
    pointer-events: none;
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(80, 80, 90, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(139, 0, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle vignette */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Spark particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle.spark {
    width: 2px;
    height: 2px;
    background: #ff6b35;
    box-shadow: 0 0 6px 2px rgba(255, 107, 53, 0.6), 0 0 12px 4px rgba(255, 60, 20, 0.3);
    animation: sparkFloat 8s ease-in-out infinite;
}

.particle.ember {
    width: 3px;
    height: 3px;
    background: #8b0000;
    box-shadow: 0 0 8px 2px rgba(139, 0, 0, 0.5);
    animation: emberFloat 12s ease-in-out infinite;
}

.particle.ash {
    width: 1px;
    height: 1px;
    background: rgba(150, 150, 160, 0.6);
    animation: ashFloat 15s linear infinite;
}

@keyframes sparkFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes emberFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(50vh) translateX(30px) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0.3);
        opacity: 0;
    }
}

@keyframes ashFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-20vh) translateX(50px);
        opacity: 0;
    }
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-xl);
    min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--text-dark);
    gap: var(--space-lg);
}

.band-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.band-logo {
    width: auto;
    object-fit: contain;
}

.logo-blynd {
    height: 207px;
    filter: brightness(1.5);
}

.logo-ymnky {
    height: 80px;
    mix-blend-mode: screen;
    /* Makes black background transparent, shows white logo */
}

.logo-x {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-red);
}

.logo-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
}

.event-badge {
    background: transparent;
    border: 1px solid var(--accent-red);
    padding: var(--space-sm) var(--space-lg);
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-red);
}

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

.hero {
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
}

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

.date-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.date-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: 0.05em;
}

.date-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.25em;
}

.date-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--text-dark), transparent);
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.title-line {
    display: none;
}

.title-highlight {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.1;
    color: var(--text-primary);
    text-transform: uppercase;
}

.neon-text {
    color: var(--text-primary);
    text-shadow: none;
}

.venue-info {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.3);
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
}

.venue-link:hover {
    background: rgba(139, 0, 0, 0.15);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.venue-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-red);
}

.link-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    margin-left: var(--space-xs);
    transition: var(--transition-fast);
}

.venue-link:hover .link-icon {
    color: var(--accent-red);
}

.venue-info span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-light);
    letter-spacing: 0.1em;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 200px;
    border: 1px solid rgba(60, 60, 65, 0.15);
    opacity: 0.5;
}

.hero-decoration.left {
    left: 0;
    border-right: none;
}

.hero-decoration.right {
    right: 0;
    border-left: none;
}

/* ============================================
   BANDS SECTION
   ============================================ */

.bands-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
}

.bands-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.intro-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.bands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.band-card {
    padding: var(--space-xl);
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-primary));
    border: 1px solid var(--text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    display: block;
    text-decoration: none;
    color: inherit;
}

.band-link {
    cursor: pointer;
}

.band-link:hover {
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.band-card.headliner {
    border-color: var(--accent-red);
    background: linear-gradient(145deg, rgba(139, 0, 0, 0.1), var(--bg-primary));
}

.band-card.headliner:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.2);
}

.band-header {
    margin-bottom: var(--space-lg);
}

.band-role {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.band-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.band-card.headliner .band-name {
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.band-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.band-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.band-spotify-hint {
    margin-top: var(--space-md);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-red);
    text-align: right;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.band-link:hover .band-spotify-hint {
    opacity: 1;
    transform: translateX(-5px);
}

.bands-tagline {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.bands-tagline p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .bands-section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .intro-text {
        font-size: 1.4rem;
    }
    
    .bands-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .band-card {
        padding: var(--space-lg);
    }
    
    .band-name {
        font-size: 1.6rem;
    }
    
    .band-description {
        font-size: 1rem;
    }
    
    .bands-tagline p {
        font-size: 0.95rem;
    }
}

/* ============================================
   CONTENT GRID
   ============================================ */

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 480px);
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CARDS - Dark Minimal Style
   ============================================ */

.ticket-card,
.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--text-dark);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.ticket-card:hover,
.payment-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-muted);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--text-dark);
    position: relative;
}

.card-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--text-muted);
}

.card-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.card-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.card-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.card-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.title-icon {
    color: var(--accent-red);
    font-size: 0.7rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
}

.price-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-currency {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-footer {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    height: 12px;
}

/* ============================================
   RESERVE FORM
   ============================================ */

.door-sale-info {
    padding: var(--space-lg);
    background: rgba(0, 100, 150, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.25);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.door-sale-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.door-sale-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.raffle-info {
    padding: var(--space-lg);
    background: rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.raffle-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.raffle-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.label-icon {
    color: var(--accent-red);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-primary);
    border: 1px solid var(--text-dark);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-normal);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper input:focus {
    border-color: var(--text-muted);
    background: var(--bg-secondary);
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: var(--transition-normal);
}

.input-wrapper input:focus ~ .input-glow {
    width: 100%;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.qty-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--text-dark);
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.quantity-selector input {
    width: 70px;
    height: 48px;
    text-align: center;
    background: var(--bg-primary);
    border: 1px solid var(--text-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: rgba(139, 0, 0, 0.06);
    border: 1px solid rgba(139, 0, 0, 0.2);
    margin-top: var(--space-md);
}

.total-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.total-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--accent-red);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-normal);
    margin-top: var(--space-md);
}

.submit-btn:hover {
    background: var(--accent-red-bright);
    box-shadow: var(--glow-red);
}

.submit-btn:active {
    transform: scale(0.98);
}

.btn-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffffff;
}

.btn-icon {
    font-size: 1.1rem;
    color: #ffffff;
    transition: var(--transition-fast);
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-glow {
    display: none;
}

/* ============================================
   PAYMENT CARD
   ============================================ */

.payment-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.revolut-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-primary);
    border-left: 3px solid var(--accent-red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.revolut-logo svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.revolut-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.payment-instructions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.15);
    margin-bottom: var(--space-md);
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instruction-step:last-child {
    border-bottom: none;
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-red);
    min-width: 28px;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.step-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.revtag-container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(60, 60, 70, 0.1));
    border: 2px solid var(--accent-red);
    border-radius: var(--radius-md);
}

.revtag-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.revtag-value {
    flex: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.copy-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.copy-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--text-muted);
}

.copy-btn:hover svg {
    color: var(--text-secondary);
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.03) 0%, transparent 100%);
    border-radius: var(--radius-lg);
}

.qr-frame {
    position: relative;
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border: 2px solid var(--text-dark);
    border-radius: var(--radius-md);
}

.qr-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-red);
}

.qr-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.qr-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.qr-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.qr-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }

.qr-code {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-sm);
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
}

.qr-placeholder span {
    font-size: 0.85rem;
    font-weight: 700;
}

.qr-placeholder small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.qr-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* ============================================
   MODAL - Dark Minimal Style
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space-xl);
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.modal-content {
    position: relative;
    max-width: 450px;
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--text-dark);
    padding: var(--space-2xl);
    animation: modalIn 0.3s ease;
}

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

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #2a5a2a;
}

.success-icon svg {
    width: 24px;
    height: 24px;
    color: #4a8a4a;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.modal-body {
    margin-bottom: var(--space-xl);
}

.order-info {
    background: var(--bg-primary);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-left: 2px solid var(--accent-red);
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

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

.order-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.order-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
}

.modal-instructions {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.modal-instructions p {
    margin-bottom: var(--space-sm);
}

.modal-instructions p.small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.modal-revtag {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--text-dark);
    margin: var(--space-md) 0;
}

.modal-close {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: var(--accent-red);
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--accent-red-bright);
}

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

.footer {
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-line {
    height: 1px;
    background: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.footer-divider {
    color: var(--text-dark);
}

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

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: var(--space-lg);
        max-width: 100%;
    }
    
    .logo-blynd {
        height: 140px;
    }
    
    .logo-ymnky {
        height: 80px;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .date-number {
        font-size: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .container {
        padding: var(--space-md);
    }
    
    .header {
        padding: var(--space-lg) 0;
    }
    
    .band-logos {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .logo-blynd {
        height: 140px;
    }
    
    .logo-ymnky {
        height: 60px;
    }
    
    .logo-x {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .date-display {
        flex-wrap: wrap;
        gap: var(--space-md);
        justify-content: center;
    }
    
    .date-item {
        min-width: 80px;
    }
    
    .date-number {
        font-size: 2rem;
    }
    
    .date-label {
        font-size: 0.55rem;
    }
    
    .date-divider {
        display: none;
    }
    
    .title-highlight {
        font-size: 1.8rem;
        letter-spacing: 0.05em;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .venue-info {
        padding: var(--space-sm) var(--space-md);
    }
    
    .venue-info span {
        font-size: 0.7rem;
    }
    
    .ticket-card,
    .payment-card {
        padding: var(--space-lg);
    }
    
    .card-header {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .card-title {
        font-size: 0.8rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .form-label {
        font-size: 0.65rem;
    }
    
    .input-wrapper input {
        padding: var(--space-md);
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .qty-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .quantity-selector input {
        width: 70px;
        height: 50px;
        font-size: 16px;
    }
    
    .total-display {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .total-amount {
        font-size: 1.3rem;
    }
    
    .submit-btn {
        padding: var(--space-md) var(--space-lg);
    }
    
    .btn-text {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
    
    .revtag-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .revtag-label {
        width: 100%;
    }
    
    .revtag-value {
        font-size: 1.1rem;
        width: 100%;
    }
    
    .copy-btn {
        width: 100%;
        height: 44px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .instruction-step {
        gap: var(--space-sm);
    }
    
    .step-text {
        font-size: 0.75rem;
    }
    
    .modal-content {
        padding: var(--space-lg);
        margin: var(--space-md);
        max-width: calc(100% - var(--space-xl));
    }
    
    .modal-title {
        font-size: 0.9rem;
    }
    
    .modal-revtag {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .footer-divider {
        display: none;
    }
    
    .toast {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: var(--space-sm);
    }
    
    .band-logos {
        gap: var(--space-xs);
    }
    
    .logo-blynd {
        height: 100px;
    }
    
    .logo-ymnky {
        height: 45px;
    }
    
    .logo-x {
        font-size: 1.2rem;
    }
    
    .date-display {
        gap: var(--space-sm);
    }
    
    .date-number {
        font-size: 1.6rem;
    }
    
    .title-highlight {
        font-size: 1.4rem;
    }
    
    .venue-info {
        width: 100%;
        justify-content: center;
    }
    
    .ticket-card,
    .payment-card {
        padding: var(--space-md);
    }
    
    .card-corner {
        width: 8px;
        height: 8px;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .qty-btn {
        width: 44px;
        height: 44px;
    }
    
    .quantity-selector input {
        width: 60px;
        height: 44px;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .qty-btn,
    .submit-btn,
    .copy-btn,
    .modal-close {
        min-height: 48px;
    }
    
    .venue-link:hover {
        transform: none;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: var(--space-lg) 0;
    }
    
    .date-display {
        margin-bottom: var(--space-md);
    }
    
    .band-logos {
        flex-direction: row;
    }
    
    .logo-blynd {
        height: 60px;
    }
    
    .logo-ymnky {
        height: 40px;
    }
}

/* ============================================
   ANIMATIONS - subtle
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.hero {
    animation: slideUp 0.8s ease;
}

.ticket-card {
    animation: slideUp 0.8s ease 0.2s both;
}

.payment-card {
    animation: slideUp 0.8s ease 0.3s both;
}

/* Loading state */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-btn.loading .btn-text::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: var(--space-sm);
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Notification toast */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    padding: var(--space-md) var(--space-xl);
    background: var(--bg-tertiary);
    border: 1px solid var(--text-dark);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1001;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Remove CRT effect */
body::after {
    display: none;
}
