<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
    --primary-color: #009688;
    --primary-light: #b2dfdb;
    --primary-dark: #00796b;
    --secondary-color: #ff5722;
    --text-color: #263238;
    --light-text: #eceff1;
    --background-light: #e0f2f1;
    --background-dark: #b2dfdb;
    --border-color: #cfd8dc;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --card-bg: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--background-light), var(--background-dark));
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0, 150, 136, 0.1) 40px, rgba(0, 150, 136, 0.1) 42px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0, 150, 136, 0.1) 40px, rgba(0, 150, 136, 0.1) 42px);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0.5rem auto;
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .cta-button, .submit-button, .card-button, .calculate-button, .recharge-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
}

button:hover, .cta-button:hover, .submit-button:hover, .card-button:hover, .calculate-button:hover, .recharge-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section {
    padding: 5rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Route Map Section */
.route-map-section {
    position: relative;
}

.map-container {
    position: relative;
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container img {
    width: 100%;
    display: block;
}

.map-stations {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.map-stations figure {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card-bg);
    transition: var(--transition);
}

.map-stations figure:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.map-stations figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.map-stations figcaption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Calendar Section */
.calendar-section {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 3rem;
    margin: 5rem auto;
    box-shadow: var(--shadow);
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
}

.transport-calendar {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.transport-calendar caption {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.transport-calendar th, .transport-calendar td {
    border: 1px solid var(--border-color);
    padding: 1rem;
    text-align: center;
}

.transport-calendar th {
    background-color: var(--primary-light);
    font-weight: 600;
}

.transport-calendar td {
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.transport-calendar td[data-service="normal"]:hover {
    background-color: #e0f7fa;
}

.transport-calendar td[data-service="reduced"]:hover {
    background-color: #fff9c4;
}

.transport-calendar td[data-service="weekend"]:hover {
    background-color: #ffebee;
}

.transport-calendar td[data-service="normal"] {
    color: var(--text-color);
}

.transport-calendar td[data-service="reduced"] {
    color: var(--warning-color);
}

.transport-calendar td[data-service="weekend"] {
    color: var(--error-color);
}

.transport-calendar .next-month {
    color: #bdbdbd;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.legend-item.normal::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--text-color);
    margin-right: 5px;
    border-radius: 3px;
}

.legend-item.reduced::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--warning-color);
    margin-right: 5px;
    border-radius: 3px;
}

.legend-item.weekend::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--error-color);
    margin-right: 5px;
    border-radius: 3px;
}

/* Balance Section */
.balance-section {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 3rem;
    margin: 5rem auto;
    box-shadow: var(--shadow);
}

.balance-container {
    max-width: 800px;
    margin: 0 auto;
}

.balance-meter {
    margin-bottom: 2rem;
    text-align: center;
}

.balance-meter label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

meter {
    width: 100%;
    height: 30px;
    border-radius: 15px;
    margin-bottom: 0.5rem;
}

meter::-webkit-meter-bar {
    background: #f5f5f5;
    border-radius: 15px;
}

meter::-webkit-meter-optimum-value {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    border-radius: 15px;
}

meter::-webkit-meter-suboptimum-value {
    background: linear-gradient(to right, var(--warning-color), var(--primary-light));
    border-radius: 15px;
}

meter::-webkit-meter-even-less-good-value {
    background: linear-gradient(to right, var(--error-color), var(--warning-color));
    border-radius: 15px;
}

output {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 0.5rem;
}

.balance-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

/* Bus Constructor Section */
.constructor-section {
    position: relative;
}

.bus-constructor-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.bus-constructor-form::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20px;
    background-color: var(--primary-dark);
    border-radius: 10px 10px 0 0;
}

.bus-constructor-form::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20px;
    background-color: var(--primary-dark);
    border-radius: 0 0 10px 10px;
}

fieldset {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

legend {
    padding: 0 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 150, 136, 0.2);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-group input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Ticket Strip Section */
.ticket-strip-section {
    position: relative;
    overflow: hidden;
}

.ticket-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.ticket-list {
    display: flex;
    gap: 1.5rem;
    animation: tickerAnimation 30s linear infinite;
    padding: 1rem 0;
}

@keyframes tickerAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticket-list:hover {
    animation-play-state: paused;
}

.ticket-item {
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.ticket-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.ticket-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.ticket-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.ticket-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ticket-item p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #757575;
}

.ticket-item .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.ticket-item.featured {
    border-left: 5px solid var(--secondary-color);
    background-color: #fff8e1;
}

/* Cabin Selector Section */
.cabin-section {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 3rem;
    margin: 5rem auto;
    box-shadow: var(--shadow);
}

.cabin-container {
    max-width: 800px;
    margin: 0 auto;
}

.cabin-area {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.cabin-area summary {
    padding: 1rem;
    background-color: var(--primary-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cabin-area summary:hover {
    background-color: var(--primary-color);
    color: white;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
}

.seat {
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.seat.available {
    background-color: var(--primary-light);
    border: 1px solid var(--primary-color);
}

.seat.reserved {
    background-color: #ffcdd2;
    border: 1px solid var(--error-color);
    color: var(--error-color);
    cursor: not-allowed;
}

.seat.available:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Recharge Section */
.recharge-section {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 3rem;
    margin: 5rem auto;
    box-shadow: var(--shadow);
}

.recharge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.recharge-form {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.operation-status {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.operation-status h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.status-item {
    margin-bottom: 1.5rem;
}

.status-item label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.status-item progress {
    width: 100%;
    height: 20px;
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.status-text.complete {
    color: var(--success-color);
}

.status-text.pending {
    color: var(--warning-color);
}

/* Card Garage Section */
.card-garage-section {
    position: relative;
}

.card-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.card-item {
    width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-details {
    padding: 1.5rem;
}

.card-details h3 {
    margin-bottom: 0.5rem;
}

.card-details p {
    margin-bottom: 1.5rem;
    color: #757575;
}

.card-button {
    display: block;
    width: 100%;
    text-align: center;
}

/* Control Panel Section */
.control-panel-section {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 3rem;
    margin: 5rem auto;
    box-shadow: var(--shadow);
}

.panel-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.panel-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.panel-item h3 {
    margin-bottom: 1rem;
}

.status-bar {
    margin-bottom: 1rem;
}

.status-bar progress {
    width: 100%;
    height: 15px;
    margin-bottom: 0.5rem;
}

.status-details {
    font-size: 0.9rem;
    color: #757575;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 3rem;
    margin: 5rem auto;
    box-shadow: var(--shadow);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.info-item p {
    margin-bottom: 0.5rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background-color: #263238;
    color: var(--light-text);
    padding: 3rem 2rem 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-text);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
    color: var(--primary-light);
}

/* Legal Pages */
.legal-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container {
    background-color: white;
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: #757575;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.legal-content h2::after {
    margin-left: 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-content p {
    text-align: left;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.contact-details {
    list-style-type: none !important;
    padding-left: 0 !important;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th, .cookie-table td {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    text-align: left;
}

.cookie-table th {
    background-color: var(--primary-light);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(38, 50, 56, 0.95);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 1000;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent button {
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
}

.cookie-consent a {
    color: var(--primary-light);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .balance-stats {
        flex-direction: column;
    }
    
    .ticket-item {
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .calendar-section, .balance-section, .cabin-section, .recharge-section, .control-panel-section, .contact-section {
        padding: 2rem 1rem;
    }
    
    .transport-calendar th, .transport-calendar td {
        padding: 0.5rem;
    }
    
    .calendar-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
} </pre></body></html>