:root {
    --primary-blue: #2a3d90;
    --primary-orange: #f47932;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inconsolata', monospace;
    background-color: #ffffff;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

#minimal-landing {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-pair {
    display: flex;
    align-items: center;
    gap: 8vh;
}

.main-logo {
    height: 30vh;
    width: auto;
}

.sun-button {
    position: relative;
    width: 14vh;
    height: 14vh;
    background: var(--white);
    border: 0.25vh solid var(--primary-orange);
    border-radius: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(244, 121, 50, 0.1);
}

.sun-button img {
    width: 95%;
    height: auto;
}

.sun-button:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 2-px rgba(244, 121, 50, 0.3);
}

.moon-info {
    position: absolute;
    top: 16vh;
    right: -2vh;
    width: 300px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(42, 61, 144, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: right;
    z-index: 100;
}

.moon-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

.moon-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.amjuno-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.moon-info span {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.sun-button:hover .moon-info {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (max-width: 600px) {
    .logo-pair {
        flex-direction: column;
        gap: 2rem;
    }

    .main-logo {
        height: 120px;
    }
}