@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #374151;
    color: #f3f4f6;
    overflow-x: hidden
}

.font-ticket {
    font-family: 'Cutive Mono', monospace
}

.station-bg {
    background: linear-gradient(rgba(55, 65, 81, 0.9), rgba(55, 65, 81, 0.9)), url('https://images.unsplash.com/photo-1474487548417-781cb714c2f0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative
}

.departure-board {
    background: #000;
    border: 10px solid #1f2937;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    max-width: 800px
}

.board-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #4b5563;
    padding: 10px 0;
    font-family: 'Cutive Mono';
    text-transform: uppercase;
    color: #facc15;
    font-size: 1.2rem;
    letter-spacing: 2px
}

.board-header {
    color: #9ca3af;
    font-size: 1rem
}

.ticket {
    background: #fff;
    color: #000;
    width: 300px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-image: radial-gradient(circle at 0 50%, transparent 10px, #fff 11px), radial-gradient(circle at 100% 50%, transparent 10px, #fff 11px);
    background-position: 0 0, 0 0;
    background-size: 100% 100%
}

.ticket-header {
    border-bottom: 2px dashed #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center
}

.ticket-body {
    font-family: 'Cutive Mono';
    font-size: 1.1rem
}

.stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    border: 4px double #15803d;
    color: #15803d;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s
}

.stamp.visible {
    opacity: 0.8
}

.btn-station {
    background: #059669;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s
}

.btn-station:hover {
    background: #047857
}

.clock {
    width: 100px;
    height: 100px;
    border: 4px solid #fff;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 20px;
    background: #fff
}

.clock-face {
    width: 100%;
    height: 100%;
    position: relative
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    background: #000;
    transform-origin: bottom center;
    border-radius: 4px
}

.hand.hour {
    width: 6px;
    height: 25%;
}

.hand.min {
    width: 4px;
    height: 40%;
}

.input-lcd {
    background: #111827;
    color: #22c55e;
    font-family: 'Cutive Mono';
    border: 2px solid #374151;
    padding: 10px;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
    border-radius: 4px
}