/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus, *:active {
    outline: none;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    color: #fff;
    background-color: #302f32;
    min-height: 100%;
    margin: 0;
    font-family: 'Inter', 'Manrope', Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

/* Background Text */
.bg-text {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-family: 'Manrope', sans-serif;
    font-size: 15vw;
    font-weight: 800;
    color: #3a393c;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    padding-right: 5vw;
}

/* Main Section */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ex16-sec {
    background-color: #302f32;
    color: #eee;
    height: 100vh;
    min-height: 470px;
    padding-top: 50px;
    font-family: 'Manrope', sans-serif;
}

/* Solar System - EXACT structure from original */
.solar-system-wrp {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    right: 33%;
    z-index: 2;
}

/* Third orbit - outer (1800px) */
.third-planet-orbit {
    border: 1px solid #eb9128;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 1800px;
    height: 1800px;
    display: flex;
    position: absolute;
    animation: orbit-rotate 360s linear infinite;
}

.third-planet {
    background-color: #eb9128;
    transform-origin: 925px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    right: 900px;
    transform: rotate(-13deg);
}

/* Second orbit - middle (916px) */
.second-planet-orbit {
    border: 1px solid #eb9128;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 916px;
    height: 916px;
    display: flex;
    position: absolute;
    animation: orbit-rotate-reverse 200s linear infinite;
}

.second-planet {
    background-color: #eb9128;
    transform-origin: 493px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    position: relative;
    right: 458px;
    transform: rotate(24deg);
}

/* First orbit - inner (450px) */
.first-planet-orbit {
    border: 1px solid #eb9128;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 450px;
    display: flex;
    position: absolute;
    animation: orbit-rotate 120s linear infinite;
}

.first-planet {
    background-color: #eb9128;
    transform-origin: 245px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
    right: 225px;
    transform: rotate(126deg);
}

/* Sun */
.sun-img {
    width: 140px;
    height: 140px;
    position: absolute;
    animation: sun-rotate 60s linear infinite;
}

/* Animations */
@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-rotate-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes sun-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Main Content - EXACT positioning */
.ex16-main-container {
    z-index: 10;
    max-width: 500px;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.ex16-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.launch-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: lowercase;
    padding-left: 10px;
}

.ex16-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    border: 1px solid #eb9128;
    border-radius: 50px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ex16-button:hover {
    background-color: #eb9128;
    color: #fff;
}

/* Paragraph - EXACT positioning */
.ex16-paragraph {
    position: absolute;
    bottom: 100px;
    left: 40px;
    max-width: 320px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    z-index: 100;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-top-wrp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links-wrp {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.footer-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1200px) {
    .solar-system-wrp {
        right: 20%;
    }
    
    .third-planet-orbit {
        width: 1200px;
        height: 1200px;
    }
    
    .third-planet {
        transform-origin: 625px;
        right: 600px;
    }
    
    .second-planet-orbit {
        width: 650px;
        height: 650px;
    }
    
    .second-planet {
        transform-origin: 360px;
        right: 325px;
    }
}

@media (max-width: 991px) {
    .solar-system-wrp {
        right: 10%;
    }
    
    .third-planet-orbit {
        width: 800px;
        height: 800px;
    }
    
    .third-planet {
        transform-origin: 425px;
        right: 400px;
        width: 35px;
        height: 35px;
    }
    
    .second-planet-orbit {
        width: 500px;
        height: 500px;
    }
    
    .second-planet {
        transform-origin: 285px;
        right: 250px;
        width: 45px;
        height: 45px;
    }
    
    .first-planet-orbit {
        width: 300px;
        height: 300px;
    }
    
    .first-planet {
        transform-origin: 170px;
        right: 150px;
        width: 28px;
        height: 28px;
    }
    
    .sun-img {
        width: 90px;
        height: 90px;
    }

    .ex16-h1 {
        font-size: 48px;
    }
    
    .ex16-main-container {
        left: 30px;
    }
    
    .ex16-paragraph {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 60px 24px;
    }
    
    .solar-system-wrp {
        width: 400px;
        height: 400px;
        right: 50%;
        top: 35%;
        transform: translate(50%, -50%);
    }
    
    .third-planet-orbit {
        width: 500px;
        height: 500px;
    }
    
    .third-planet {
        transform-origin: 265px;
        right: 240px;
        width: 30px;
        height: 30px;
    }
    
    .second-planet-orbit {
        width: 350px;
        height: 350px;
    }
    
    .second-planet {
        transform-origin: 200px;
        right: 165px;
        width: 32px;
        height: 32px;
    }
    
    .first-planet-orbit {
        width: 200px;
        height: 200px;
    }
    
    .first-planet {
        transform-origin: 115px;
        right: 95px;
        width: 20px;
        height: 20px;
    }
    
    .sun-img {
        width: 60px;
        height: 60px;
    }
    
    .ex16-h1 {
        font-size: 36px;
    }
    
    .ex16-main-container {
        left: 24px;
        top: auto;
        bottom: 200px;
        transform: none;
    }
    
    .ex16-paragraph {
        left: 24px;
        bottom: 140px;
        max-width: 280px;
    }
    
    .footer {
        padding: 20px 24px;
    }
    

}

@media (max-width: 479px) {
    .ex16-h1 {
        font-size: 28px;
    }
    
    .footer-top-wrp {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .footer-bottom-wrp {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}
