.stations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

/* HERO SECTION */
.stations-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    backdrop-filter: blur(10px);
}

.hero-content {
    flex: 1;
}

.hero-label {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--blue);
    margin-bottom: 16px;
    font-weight: 600;
}

.stations-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.h-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.h-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
}

.h-lab {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* SECTIONS */
.stations-section {
    margin-bottom: 100px;
}

.section-header {
    margin-bottom: 40px;
}

.section-title-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
}

.section-dot.pulsing {
    box-shadow: 0 0 0 rgba(58, 134, 255, 0.4);
    animation: pulse 2s infinite;
}

.section-dot.history { background: var(--amber); }
.section-dot.future { background: var(--green); }
.section-dot.prototype { background: var(--purple); }

.section-title-group h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* CARDS */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 32px;
}

.stations-grid.mini {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.station-card {
    position: relative;
    background: rgba(15, 15, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.op-card {
    grid-column: span 2;
}

.op-card-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.op-text-side {
    flex: 1.2;
}

.op-image-side {
    flex: 0.8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-backdrop {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.floating-img {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
    transform: rotate(-10deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-15px) rotate(-8deg); }
}

.station-card:hover {
    transform: translateY(-8px);
    border-color: rgba(58, 134, 255, 0.3);
    background: rgba(20, 20, 25, 0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s;
    pointer-events: none;
}

.station-card:hover .card-glow {
    opacity: 1;
}

.card-header {
    margin-bottom: 28px;
}

.card-header h3 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.stat-row.principal {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.operational {
    background: rgba(54, 214, 136, 0.1);
    color: var(--green);
    border: 1px solid rgba(54, 214, 136, 0.2);
}

.stat-row {
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.stat-label { color: var(--text-muted); }
.stat-value { color: #fff; font-weight: 500; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.ms-val {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.ms-lab {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.card-actions {
    margin-top: 32px;
}

.btn-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-link:hover {
    background: #4a92ff;
    box-shadow: 0 8px 16px rgba(58, 134, 255, 0.3);
}

.btn-disabled {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* HISTORY TABLE */
.history-table-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow-x: auto;
}

.stations-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.stations-table th {
    text-align: left;
    padding: 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stations-table td {
    padding: 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.st-name { font-weight: 700; color: #fff; }

.prog-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--amber);
}

/* MINI CARDS (History & Future) */
.stations-grid.mini {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.mini-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mini-img-wrap {
    width: 100%;
    height: 180px;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-station-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-card:hover .mini-station-img {
    transform: scale(1.1) translateY(-5px);
}

.mini-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.card-header-mini h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.card-body-mini {
    flex: 1;
}

.mini-meta-row {
    display: flex;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 6px;
}

.mini-meta-row .label { color: var(--text-muted); }
.mini-meta-row .value { color: #fff; font-weight: 500; }

.mini-meta-details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.3);
}

.launch-date { font-size: 11px; font-weight: 700; color: var(--green); white-space: nowrap; }
.entity-name { font-size: 12px; margin-bottom: 12px; color: var(--text-muted); }
.remarks { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; opacity: 0.8; }

.mini-meta {
    display: flex;
    gap: 16px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blue);
}

/* PROTOTYPES ROW */
.prototypes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.proto-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.proto-name { font-weight: 600; font-size: 14px; }
.proto-meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ANIMATIONS */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(58, 134, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(58, 134, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(58, 134, 255, 0); }
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .stations-hero {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .stations-hero h1 { font-size: 40px; }
    .hero-stats { width: 100%; justify-content: center; flex-wrap: wrap; }

    .op-card {
        grid-column: span 1;
    }

    .op-card-content {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }

    .op-image-side {
        width: 100%;
        margin-bottom: 20px;
    }

    .floating-img {
        max-width: 240px;
        transform: rotate(0deg);
        margin: 0 auto;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(0deg); }
    }

    .card-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .stat-row {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .stations-grid { grid-template-columns: 1fr; }
    .h-stat { flex: 1; min-width: 100px; }
    .stations-hero { padding: 30px 20px; }
    .stations-hero h1 { font-size: 32px; }
    
    .floating-img {
        max-width: 180px;
    }
}
