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

body {
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #00ff00;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.terminal {
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 2px solid #00ff00;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1), inset 0 0 20px rgba(0, 255, 0, 0.05);
    overflow: hidden;
}

/* Terminal Header */
.terminal-header {
    background: #0a0a0a;
    border-bottom: 1px solid #00ff00;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-dot.red {
    background: #ff5555;
    box-shadow: 0 0 8px rgba(255, 85, 85, 0.5);
}

.terminal-dot.yellow {
    background: #ffff55;
    box-shadow: 0 0 8px rgba(255, 255, 85, 0.5);
}

.terminal-dot.green {
    background: #55ff55;
    box-shadow: 0 0 8px rgba(85, 255, 85, 0.5);
}

/* Terminal Content */
.terminal-content {
    padding: 20px;
}

/* Filter Section */
.filter-section {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #00ff00;
    background: rgba(0, 255, 0, 0.02);
}

.filter-header {
    margin-bottom: 15px;
    font-weight: bold;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.filter-group {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    color: #00ff00;
    font-weight: bold;
    min-width: 80px;
    font-size: 12px;
    text-transform: uppercase;
}

.filter-input {
    flex: 1;
    max-width: 400px;
    background: #0a0a0a;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 8px 10px;
    font-family: inherit;
    font-size: 12px;
    outline: none;
}

.filter-input::placeholder {
    color: #006600;
}

.filter-input:focus {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Date Options */
.date-options {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.date-btn {
    background: #0a0a0a;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 6px 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.2s;
}

.date-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.date-btn.active {
    background: #00ff00;
    color: #000;
}

.date-input {
    background: #0a0a0a;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 6px 10px;
    font-family: inherit;
    font-size: 11px;
    cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
}

/* Reset Button */
.reset-btn {
    background: #ff3333;
    border: 1px solid #ff3333;
    color: #000;
    padding: 8px 16px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.2s;
    margin-top: 10px;
}

.reset-btn:hover {
    background: #ff5555;
    border-color: #ff5555;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.request-concert-btn {
    background: #ff9900;
    border: 1px solid #ff9900;
    color: #000;
    padding: 8px 16px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.2s;
    margin-top: 10px;
    margin-left: 8px;
}

.request-concert-btn:hover {
    background: #ffaa33;
    border-color: #ffaa33;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.3);
}

.info-btn {
   background: #00ffff;
    border: 1px solid #00ffff;
    color: #000;
    padding: 8px 16px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.2s;
    margin-top: 10px;
    margin-left: 8px;
}

.info-btn:hover {
    background: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.show-previous-btn {
    background: transparent;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 8px 16px;
    cursor: pointer;
    font-family: inherit;
    font-weight: normal;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.2s;
    margin-top: 10px;
    margin-left: 8px;
}

.show-previous-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.show-previous-btn.active {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Results Section */
.results-section {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #00ff00;
    background: rgba(0, 255, 0, 0.02);
}

.results-header {
    margin-bottom: 15px;
    font-weight: bold;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

/* Concerts Container */
.concerts-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.concert-item {
    background: #0a0a0a;
    border: 1px solid #00ff00;
    padding: 12px;
    transition: all 0.2s;
    animation: fadeIn 0.3s ease-in;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concert-item:hover {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    background: #121212;
}

.happening-today {
    position: relative;
    display: inline-block;
    background: #ff3333;
    color: #fff;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ff3333;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
    animation: pulse 1.5s ease-in-out infinite;
    font-family: 'Monaco', monospace;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.8);
    }
}

.past-concert-badge {
    position: relative;
    display: inline-block;
    background: #666666;
    color: #fff;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #666666;
    box-shadow: 0 0 10px rgba(102, 102, 102, 0.6);
    animation: pulse-past 1.5s ease-in-out infinite;
    font-family: 'Monaco', monospace;
}

@keyframes pulse-past {
    0%, 100% {
        box-shadow: 0 0 8px rgba(102, 102, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(102, 102, 102, 0.8);
    }
}

.sold-out-badge {
    position: relative;
    display: inline-block;
    background: #ff9900;
    color: #000;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ff9900;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.6);
    animation: pulse-sold-out 1.5s ease-in-out infinite;
    font-family: 'Monaco', monospace;
}

@keyframes pulse-sold-out {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 153, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 153, 0, 0.8);
    }
}

.badge-container {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.concert-item.past {
    opacity: 0.6;
}

.concert-item.past .concert-date,
.concert-item.past .concert-lineup,
.concert-item.past .concert-detail-value {
    text-decoration: line-through;
}

.concert-date {
    font-weight: bold;
    color: #ffff00;
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
}

.concert-lineup {
    color: #00ff00;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 12px;
}

.concert-lineup-label {
    color: #00ff00;
    font-weight: bold;
    margin-right: 5px;
}

.concert-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    font-size: 11px;
}

.concert-detail {
    display: flex;
    gap: 5px;
}

.concert-detail-label {
    color: #00ffff;
    font-weight: bold;
    min-width: 50px;
}

.concert-detail-value {
    color: #00ff00;
    word-break: break-all;
}

/* Concert Genres */
.concert-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #00ff00;
}

.genre-tag {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 4px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.2s;
}

.genre-tag:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.2);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 30px;
    color: #ff3333;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .terminal {
        border-radius: 4px;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-input {
        width: 100%;
        max-width: 100%;
    }

    .date-options {
        width: 100%;
    }

    .concert-details {
        grid-template-columns: 1fr;
    }

    body {
        padding: 10px;
    }

    .terminal-content {
        padding: 12px;
    }

    .filter-section,
    .results-section {
        padding: 10px;
    }
}

/* Glitch effect for interactivity */
@keyframes glitch {
    0% {
        text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
    }
    20% {
        text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
    }
    40% {
        text-shadow: 1px 0 #00ff00;
    }
    60% {
        text-shadow: -1px 0 #ffff00;
    }
    80% {
        text-shadow: 2px 0 #00ffff, -2px 0 #ff00ff;
    }
    100% {
        text-shadow: -2px 0 #00ffff, 2px 0 #ff00ff;
    }
}

.terminal-title:hover {
    animation: glitch 0.3s;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px 20px;
    color: #00ff00;
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.footer p {
    margin: 0;
    letter-spacing: 1px;
}

/* Concert Modal */
.concert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #00ff00;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ff3333;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 1001;
}

.modal-close:hover {
    color: #ff5555;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.modal-header {
    background: #0a0a0a;
    border-bottom: 1px solid #00ff00;
    padding: 20px;
}

.modal-lineup {
    font-size: 22px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-date-time {
    color: #ffff00;
    font-size: 14px;
    letter-spacing: 1px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.tickets-btn {
    padding: 10px 20px;
    background: #00ff00;
    color: #000;
    border: 2px solid #00ff00;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.tickets-btn:hover {
    background: #00cc00;
    border-color: #00cc00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: scale(1.05);
}

.share-btn {
    padding: 10px 20px;
    background: #0056ff;
    color: #fff;
    border: 2px solid #0056ff;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.share-btn:hover {
    background: #0040cc;
    border-color: #0040cc;
    box-shadow: 0 0 15px rgba(0, 86, 255, 0.3);
    transform: scale(1.05);
}

.share-btn.copied {
    background: #55ff55;
    border-color: #55ff55;
    color: #000;
}

.modal-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    color: #00ffff;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    color: #00ff00;
    font-size: 14px;
    border-left: 2px solid #00ff00;
    padding-left: 10px;
}

.detail-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-left: 10px;
}

.modal-flyer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyer-placeholder {
    width: 100%;
    aspect-ratio: 9/12;
    border: 2px dashed #00ff00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 0, 0.02);
    border-radius: 4px;
}

.flyer-label {
    color: #00ff00;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.flyer-empty {
    color: #006600;
    font-size: 12px;
    text-align: center;
}

.flyer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-lineup {
        font-size: 18px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
}

/* Request Modal */
.request-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1001;
    padding: 20px;
}

.request-modal .modal-content {
    max-width: 600px;
}

.request-modal .modal-header {
    text-align: center;
}

.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1001;
    padding: 20px;
}

.info-modal .modal-content {
    max-width: 600px;
}

.info-modal .modal-header {
    text-align: center;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.request-message {
    padding: 20px;
    text-align: center;
}

.request-message p {
    color: #00ff00;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.email-link {
    font-size: 16px !important;
    margin-top: 20px !important;
    padding: 15px;
    border: 1px solid #00ff00;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 4px;
}

.email-link a {
    color: #ffff00;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
}

.email-link a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.modal-subtitle {
    color: #00ffff;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Request Form - Removed */

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid #00ff00;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}
