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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0e27;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    overscroll-behavior: none;
}

@media (max-width: 900px) {
    body {
        align-items: flex-start;
        padding: 20px 0;
    }
}

/* Animated background grid */
body::before {
    overflow: hidden;
    inset: 0;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

/* Glowing orbs */
body::after {
    overflow: hidden;
    inset: 0;
    content: '';
    position: fixed;
    top: -65%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
    animation: orbRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

@keyframes orbRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    body::after {
        top: -150%;
        left: -100%;
        width: 300%;
        height: 400%;
    }
}

@media (min-width: 1201px) {
    body::after {
        top: -100%;
        left: -60%;
        width: 250%;
        height: 400%;
    }
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.container {
    max-width: 1600px;
    width: 90%;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
}

.container-left {
    display: flex;
    flex-direction: column;
}

.container-right {
    display: flex;
    flex-direction: column;
}

.container-left,
.container-right {
    background: rgba(15, 20, 40, 0.85);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(0, 255, 157, 0.1);
    display: flex;
    flex-direction: column;
}

h1 {
    margin: 0 0 10px 0;
    font-size: 64px;
    background: linear-gradient(135deg, #00ff9d, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
}

.container h2 {
    margin: 0 0 15px 0;
    font-size: 20px;
    background: linear-gradient(135deg, #00ff9d, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.container h3 {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.container ul {
    margin-top: 10px;
    margin-left: 20px;
    list-style-type: disc;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
}

.container li::marker {
    color: #00ff9d;
}

.link {
    display: inline-flex;
    align-items: center;
    color: rgba(0, 255, 157, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.link:hover {
    color: #00ff9d;
    gap: 12px;
}


.button-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 1200px) {
    .button-group {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 200, 255, 0.1));
    color: #00ff9d;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 157, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.2), rgba(0, 200, 255, 0.2));
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0, 255, 157, 0.3),
        0 0 20px rgba(0, 255, 157, 0.2);
    border-color: rgba(0, 255, 157, 0.5);
}


.btn-secondary {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(100, 150, 255, 0.1));
    color: #64b5ff;
    border-color: rgba(100, 150, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.2), rgba(100, 150, 255, 0.2));
    box-shadow: 
        0 8px 20px rgba(100, 150, 255, 0.3),
        0 0 20px rgba(100, 150, 255, 0.2);
    border-color: rgba(100, 150, 255, 0.5);
}

.ride-card {
    background: rgba(0, 255, 157, 0.04);
    border: 1px solid rgba(0, 255, 157, 0.15);
    border-radius: 8px;
    padding: 11px 13px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ride-card:hover {
    background: rgba(0, 255, 157, 0.08);
    border-color: rgba(0, 255, 157, 0.3);
    transform: translateY(-1px);
}

.ride-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}

.ride-card h3 {
    margin: 0;
    font-size: 14px;
    color: #00ff9d;
    font-weight: 700;
    flex: 1;
}

.ride-organizer {
    font-size: 12px;
    color: rgba(255, 200, 100, 0.9);
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.ride-details {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.ride-details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
    gap: 10px;
}

.ride-label {
    font-weight: 700;
    color: rgba(0, 255, 157, 0.7);
    flex-shrink: 0;
}

.ride-value {
    text-align: right;
    flex: 1;
    min-width: 0;
}

.no-rides {
    background: rgba(255, 200, 100, 0.08);
    border: 1px solid rgba(255, 200, 100, 0.3);
    border-radius: 10px;
    padding: 25px 18px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.no-rides strong {
    color: rgba(255, 200, 100, 0.9);
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.no-rides-links {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-rides-link {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(255, 200, 100, 0.1);
    border: 1px solid rgba(255, 200, 100, 0.3);
    border-radius: 6px;
    color: rgba(255, 200, 100, 0.9);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.no-rides-link:hover {
    background: rgba(255, 200, 100, 0.2);
    border-color: rgba(255, 200, 100, 0.6);
}

.disclaimer {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 100, 100, 0.08);
    border-left: 3px solid rgba(255, 100, 100, 0.5);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.disclaimer strong {
    color: #ff6464;
    font-weight: 600;
}

.inner-section {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    margin-bottom: 40px;
}

.bottom-section {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
}

.photo-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid rgba(0, 255, 157, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
}

.carousel-images {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0e27;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    overscroll-behavior: none;
}

@media (max-width: 900px) {
    body {
        align-items: flex-start;
        padding: 20px 0;
    }
}

/* Animated background grid */
body::before {
    overflow: hidden;
    inset: 0;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

/* Glowing orbs */
body::after {
    overflow: hidden;
    inset: 0;
    content: '';
    position: fixed;
    top: -65%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
    animation: orbRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

@keyframes orbRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    body::after {
        top: -150%;
        left: -100%;
        width: 300%;
        height: 400%;
    }
}

@media (min-width: 1201px) {
    body::after {
        top: -100%;
        left: -60%;
        width: 250%;
        height: 400%;
    }
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.container {
    max-width: 1600px;
    width: 90%;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
}

.container-left {
    display: flex;
    flex-direction: column;
}

.container-right {
    display: flex;
    flex-direction: column;
}

.container-left,
.container-right {
    background: rgba(15, 20, 40, 0.85);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(0, 255, 157, 0.1);
    display: flex;
    flex-direction: column;
}

h1 {
    margin: 0 0 10px 0;
    font-size: 64px;
    background: linear-gradient(135deg, #00ff9d, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
}

.container h2 {
    margin: 0 0 15px 0;
    font-size: 20px;
    background: linear-gradient(135deg, #00ff9d, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.container h3 {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.container ul {
    margin-top: 10px;
    margin-left: 20px;
    list-style-type: disc;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
}

.container li::marker {
    color: #00ff9d;
}

.link {
    display: inline-flex;
    align-items: center;
    color: rgba(0, 255, 157, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.link:hover {
    color: #00ff9d;
    gap: 12px;
}


.button-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 1200px) {
    .button-group {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 200, 255, 0.1));
    color: #00ff9d;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 157, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.2), rgba(0, 200, 255, 0.2));
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0, 255, 157, 0.3),
        0 0 20px rgba(0, 255, 157, 0.2);
    border-color: rgba(0, 255, 157, 0.5);
}


.btn-secondary {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(100, 150, 255, 0.1));
    color: #64b5ff;
    border-color: rgba(100, 150, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.2), rgba(100, 150, 255, 0.2));
    box-shadow: 
        0 8px 20px rgba(100, 150, 255, 0.3),
        0 0 20px rgba(100, 150, 255, 0.2);
    border-color: rgba(100, 150, 255, 0.5);
}

.ride-card {
    background: rgba(0, 255, 157, 0.04);
    border: 1px solid rgba(0, 255, 157, 0.15);
    border-radius: 8px;
    padding: 11px 13px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ride-card:hover {
    background: rgba(0, 255, 157, 0.08);
    border-color: rgba(0, 255, 157, 0.3);
    transform: translateY(-1px);
}

.ride-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}

.ride-card h3 {
    margin: 0;
    font-size: 14px;
    color: #00ff9d;
    font-weight: 700;
    flex: 1;
}

.ride-organizer {
    font-size: 12px;
    color: rgba(255, 200, 100, 0.9);
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.ride-details {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.ride-details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
    gap: 10px;
}

.ride-label {
    font-weight: 700;
    color: rgba(0, 255, 157, 0.7);
    flex-shrink: 0;
}

.ride-value {
    text-align: right;
    flex: 1;
    min-width: 0;
}

.no-rides {
    background: rgba(255, 200, 100, 0.08);
    border: 1px solid rgba(255, 200, 100, 0.3);
    border-radius: 10px;
    padding: 25px 18px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.no-rides strong {
    color: rgba(255, 200, 100, 0.9);
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.no-rides-links {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-rides-link {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(255, 200, 100, 0.1);
    border: 1px solid rgba(255, 200, 100, 0.3);
    border-radius: 6px;
    color: rgba(255, 200, 100, 0.9);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.no-rides-link:hover {
    background: rgba(255, 200, 100, 0.2);
    border-color: rgba(255, 200, 100, 0.6);
}

.disclaimer {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 100, 100, 0.08);
    border-left: 3px solid rgba(255, 100, 100, 0.5);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.disclaimer strong {
    color: #ff6464;
    font-weight: 600;
}

.inner-section {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    margin-bottom: 40px;
}

.bottom-section {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
}

.photo-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid rgba(0, 255, 157, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
    touch-action: pan-y;
}

.carousel-images {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #00ff9d;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow:
        0 0 10px rgba(0, 255, 157, 0.9),
        0 0 20px rgba(0, 200, 255, 0.6),
        0 0 8px rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
}

.photo-carousel:hover .carousel-arrow {
    opacity: 1;
    pointer-events: auto;
}

.carousel-arrow:hover {
    color: rgba(0, 255, 157, 0.7);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

@media (hover: none) and (pointer: coarse) {
    .carousel-arrow {
        display: none !important;
    }
}

.swipe-hint {
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.swipe-hint.visible {
    opacity: 1;
    pointer-events: auto;
}