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

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
    background: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
}

/* SWIPE CONTAINER SYSTEM */
.swipe-container {
    width: 400%;
    height: 100vh;
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.page {
    width: 25%;
    height: 100vh;
    position: relative;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

/* Page Backgrounds - Updated with new images */
.page-1 { 
    background-image: url('https://i.postimg.cc/655q9Yds/file-00000000e0786243af2d852d333cbcf9.png');
}
.page-2 {
    background-image: url('https://i.postimg.cc/hjg9X3Ng/Lucid-Realism-project-CPTOmni-Forge-Backgrounds-brandpalette-p-0-1.jpg');
}
.page-3 { 
    background-image: url('https://i.postimg.cc/PxyH9nVC/Lucid-Realism-project-CPTOmni-Forge-Backgrounds-brandpalette-p-3-2.jpg');
}
.page-4 { 
    background-image: url('https://i.postimg.cc/CLByH80B/cpt-night-life-Image-Aug-21-2025-12-27-20-AM.png');
}

/* Page Overlays */
.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* NAVIGATION ARROWS */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-arrow:hover {
    background: rgba(0, 255, 255, 0.4);
    border-color: rgba(255, 0, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left { left: 20px; }
.nav-arrow.right { right: 20px; }

.nav-arrow svg {
    width: 24px;
    height: 24px;
    fill: #00ffff;
}

/* PAGE INDICATORS */
.page-indicators {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-dot.active {
    background: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* METRO STYLES */
.metro-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: auto;
    z-index: 100;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.transit-container {
    position: relative;
    width: 100%;
    height: 100vh;
    perspective: 1000px;
}

.station-card {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.holographic {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 8px 32px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.holographic:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.8);
    box-shadow: 
        0 12px 40px rgba(255, 0, 255, 0.4),
        inset 0 0 30px rgba(255, 0, 255, 0.2);
}

.station-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.station-name {
    font-size: 12px;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
    margin-top: 5px;
}

.station-details {
    position: absolute;
    width: 250px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
    left: 50%;
    top: 100%;
    margin-left: -125px;
    margin-top: 10px;
}

.station-card:hover .station-details {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.detail-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #00ffff;
}

.detail-title {
    font-size: 18px;
    color: #00ffff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00ffff;
}

.detail-desc {
    font-size: 14px;
    color: #ddd;
    line-height: 1.4;
    margin-bottom: 10px;
}

.detail-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-live { background: #00ff00; color: #000; }
.status-soon { background: #ff6600; color: #fff; }
.status-coming { background: #666; color: #fff; }

/* Station Positions - Desktop */
.station1 { bottom: 40%; left: 10%; }
.station2 { top: 40%; left: 25%; }
.station3 { top: 20%; left: 40%; }
.station4 { top: 25%; left: 60%; }
.station5 { top: 40%; left: 37%; }
.station6 { top: 40%; right: 25%; }
.station7 { bottom: 70%; right: 20%; }
.station8 { top: 10%; left: 10%; }
.station9 { top: 20%; right: 72%; }
.station10 { top: 30%; left: 50%; }
.station11 { top: 25%; left: 1%; }

.welcome-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.welcome-text h1 {
    font-size: 28px;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 10px;
}

.welcome-text p {
    font-size: 16px;
    color: #ccc;
}

/* PLACEHOLDER CONTENT FOR NEW PAGES */
.page-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-title {
    font-size: 48px;
    color: #00ffff;
    text-shadow: 0 0 30px #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.page-subtitle {
    font-size: 20px;
    color: #ccc;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}

.coming-soon {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* MOBILE MODAL */
.mobile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #00ffff;
    font-size: 30px;
    cursor: pointer;
}

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00ffff;
}

.modal-desc {
    font-size: 16px;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-action {
    width: 100%;
    padding: 15px;
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid #00ffff;
    border-radius: 10px;
    color: #00ffff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-action:hover {
    background: rgba(0, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .nav-arrow { 
        width: 40px; 
        height: 40px; 
    }
    
    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Grid Layout for Stations */
    .transit-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
        padding: 80px 20px 100px;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }
    
    .station-card {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    /* Tiny widget mode for mobile */
    .holographic {
        padding: 8px;
        min-height: 100px;
    }
    
    .station-icon { 
        width: 40px; 
        height: 40px; 
    }
    
    .station-name { 
        font-size: 10px; 
    }
    
    /* Hide hover details on mobile */
    .station-details {
        display: none;
    }
    
    /* Touch feedback */
    .station-card:active .holographic {
        transform: scale(0.95);
        background: rgba(0, 255, 255, 0.3);
    }
    
    .welcome-text {
        position: fixed;
        bottom: 60px;
        padding: 15px 25px;
    }
    
    .welcome-text h1 { font-size: 20px; }
    .welcome-text p { font-size: 14px; }
    
    .page-indicators {
        bottom: 20px;
    }
    
    .page-title { font-size: 32px; }
    .page-subtitle { font-size: 16px; padding: 0 20px; }
    
    .metro-logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .transit-container {
        grid-template-columns: repeat(2, 1fr);
    }
}