/* ============================================
   FANTASY WORLDBUILDING PAGE - GALIRON
   Rich medieval fantasy style with ornaments
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    /* Initial background - will be dynamically updated by JavaScript on scroll */
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(106, 76, 147, 0.05) 0%, transparent 50%),
        #050810;
    color: #e8e8e8;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    transition: background 0.1s ease-out;
}

/* Magical Particles Background */
.magic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        /* Golden magic particles */
        radial-gradient(circle, #c9a961 1px, transparent 1px),
        radial-gradient(circle, #d4af37 1px, transparent 1px),
        /* Purple mystical particles */
        radial-gradient(circle, #6a4c93 2px, transparent 2px),
        radial-gradient(circle, #8b5fc7 1px, transparent 1px),
        /* White sparkles */
        radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 550px 550px, 350px 350px, 450px 450px, 250px 250px, 300px 300px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 150px;
    animation: magicFloat 120s linear infinite;
    opacity: 0.3;
}

@keyframes magicFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-50px) translateX(30px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Animated Stars Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #eee, transparent),
        radial-gradient(2px 2px at 60% 70%, #c9a961, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, #c9a961, transparent),
        radial-gradient(2px 2px at 90% 60%, #fff, transparent),
        radial-gradient(1px 1px at 33% 85%, #c9a961, transparent),
        radial-gradient(2px 2px at 15% 65%, #6a4c93, transparent);
    background-size: 250px 250px, 300px 300px, 200px 200px, 280px 280px, 220px 220px, 260px 260px, 290px 290px;
    animation: stars 90s linear infinite;
    opacity: 0.6;
}

@keyframes stars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-250px);
    }
}

/* Constellations */
.constellations-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.constellation {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    filter: drop-shadow(0 0 3px rgba(201, 169, 97, 0.6));
}

.constellation-line {
    stroke: #c9a961;
    stroke-width: 0.5;
    opacity: 0.6;
    stroke-linecap: round;
}

.constellation-star {
    fill: #f5e6d3;
    filter: drop-shadow(0 0 2px rgba(245, 230, 211, 0.8));
}

/* Constellation names */
.constellation-name {
    display: block;
    text-align: center;
    color: #c9a961;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px rgba(201, 169, 97, 0.6);
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Position each constellation differently - distributed across the page */
.constellation-1 {
    top: 8%;
    right: 18%;
    width: 200px;
}

.constellation-2 {
    top: 10%;
    left: 12%;
    width: 150px;
}

.constellation-3 {
    top: 5%;
    left: 45%;
    width: 160px;
}

.constellation-4 {
    top: 22%;
    right: 8%;
    width: 140px;
}

.constellation-5 {
    top: 25%;
    left: 20%;
    width: 180px;
}

.constellation-6 {
    top: 30%;
    right: 35%;
    width: 140px;
}

.constellation-7 {
    top: 40%;
    left: 10%;
    width: 180px;
}

.constellation-8 {
    top: 45%;
    right: 15%;
    width: 190px;
}

.constellation-9 {
    top: 55%;
    left: 35%;
    width: 160px;
}

.constellation-10 {
    top: 58%;
    right: 25%;
    width: 120px;
}

.constellation-11 {
    top: 70%;
    left: 15%;
    width: 200px;
}

.constellation-12 {
    top: 72%;
    right: 12%;
    width: 130px;
}

/* Active constellation state */
.constellation.active {
    opacity: 1;
}

/* Constellation animations */
@keyframes constellationFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -10px);
    }
}

.constellation.active .constellation-group {
    animation: constellationFloat 8s ease-in-out infinite;
}

/* Twinkle effect for constellation stars */
@keyframes constellationTwinkle {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.constellation-star {
    animation: constellationTwinkle 3s ease-in-out infinite;
}

.constellation-star:nth-child(2n) {
    animation-delay: 0.5s;
}

.constellation-star:nth-child(3n) {
    animation-delay: 1s;
}

/* Corner Ornaments */
.corner-ornament {
    position: fixed;
    font-size: 4rem;
    color: #c9a961;
    opacity: 0.4;
    text-shadow:
        0 0 20px rgba(201, 169, 97, 0.8),
        0 0 40px rgba(106, 76, 147, 0.5);
    z-index: 10;
    animation: pulseGlow 4s ease-in-out infinite;
}

.corner-ornament.top-left {
    top: 2rem;
    left: 2rem;
}

.corner-ornament.top-right {
    top: 2rem;
    right: 2rem;
}

.corner-ornament.bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.corner-ornament.bottom-right {
    bottom: 2rem;
    right: 2rem;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        text-shadow:
            0 0 20px rgba(201, 169, 97, 0.6),
            0 0 40px rgba(106, 76, 147, 0.3);
    }
    50% {
        opacity: 0.6;
        text-shadow:
            0 0 30px rgba(201, 169, 97, 1),
            0 0 60px rgba(106, 76, 147, 0.7);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Ornamental Dividers */
.ornamental-divider {
    text-align: center;
    font-size: 2rem;
    color: #c9a961;
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.6);
    letter-spacing: 1.5rem;
    margin: 1.5rem 0;
    opacity: 0.8;
}

.ornamental-divider.top {
    margin-bottom: 2rem;
}

.ornamental-divider.bottom {
    margin-top: 2rem;
}

/* Section Dividers */
.section-divider {
    text-align: center;
    font-size: 2.5rem;
    color: #c9a961;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
    letter-spacing: 2rem;
    margin: 5rem 0;
    padding: 2rem 0;
    position: relative;
    opacity: 0.7;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a961, transparent);
    opacity: 0.5;
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.title {
    font-size: 4.5rem;
    color: #d4af37;
    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(201, 169, 97, 0.6),
        0 0 30px rgba(106, 76, 147, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.title-decoration {
    font-size: 3rem;
    color: #c9a961;
    opacity: 0.9;
    display: inline-block;
    animation: decorationPulse 3s ease-in-out infinite;
}

.title-decoration.left {
    margin-right: 1rem;
}

.title-decoration.right {
    margin-left: 1rem;
}

@keyframes decorationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.tagline {
    font-size: 1.6rem;
    color: #c9a961;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
    line-height: 1.6;
}

/* Scroll/Parchment Sections */
.scroll-section {
    position: relative;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.scroll-top,
.scroll-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, transparent, #c9a961, transparent);
    opacity: 0.2;
}

.scroll-top {
    top: 0;
    border-radius: 10px 10px 0 0;
}

.scroll-bottom {
    bottom: 0;
    border-radius: 0 0 10px 10px;
}

/* Description */
.description {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background:
        linear-gradient(135deg, rgba(22, 33, 62, 0.7) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(201, 169, 97, 0.2),
        0 0 30px rgba(106, 76, 147, 0.2);
    position: relative;
}

.description::before,
.description::after {
    content: '❖';
    position: absolute;
    font-size: 1.5rem;
    color: #c9a961;
    opacity: 0.5;
}

.description::before {
    top: 1rem;
    left: 1.5rem;
}

.description::after {
    bottom: 1rem;
    right: 1.5rem;
}

.description p {
    font-size: 1.2rem;
    line-height: 2;
    color: #e8e8e8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Countdown Section */
.countdown-section {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem 0;
}

.countdown-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 3rem;
    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.6),
        0 0 20px rgba(201, 169, 97, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    position: relative;
}

.countdown-section h2::before,
.countdown-section h2::after {
    content: '⟡';
    margin: 0 1rem;
    opacity: 0.7;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 3px solid rgba(201, 169, 97, 0.6);
    border-radius: 15px;
    padding: 2rem 2.5rem;
    min-width: 140px;
    box-shadow:
        0 0 30px rgba(106, 76, 147, 0.4),
        inset 0 1px 0 rgba(201, 169, 97, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 40px rgba(106, 76, 147, 0.6),
        inset 0 1px 0 rgba(201, 169, 97, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.6);
}

.countdown-item::before {
    content: '✦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #c9a961;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.8);
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow:
        0 0 15px rgba(212, 175, 55, 0.8),
        0 0 30px rgba(201, 169, 97, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Georgia', serif;
}

.countdown-label {
    font-size: 1rem;
    color: #c9a961;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.launch-date {
    font-size: 1.6rem;
    color: #d4af37;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    letter-spacing: 1px;
}

/* What Awaits Section */
.what-awaits {
    margin: 6rem 0;
    text-align: center;
}

.what-awaits h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 4rem;
    text-shadow:
        0 0 15px rgba(212, 175, 55, 0.6),
        0 0 25px rgba(201, 169, 97, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    position: relative;
}

.what-awaits h2::before {
    content: '⟡ ';
    margin-right: 1rem;
}

.what-awaits h2::after {
    content: ' ⟡';
    margin-left: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
}

.card {
    background:
        linear-gradient(135deg, rgba(22, 33, 62, 0.7) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 2px solid rgba(201, 169, 97, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(201, 169, 97, 0.8);
    box-shadow:
        0 15px 50px rgba(106, 76, 147, 0.5),
        0 0 40px rgba(201, 169, 97, 0.3),
        inset 0 1px 0 rgba(201, 169, 97, 0.4);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.5));
}

.card h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.card p {
    color: #c9c9c9;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Whispers Section */
.whispers {
    margin: 6rem 0;
    text-align: center;
}

.whispers h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 4rem;
    text-shadow:
        0 0 15px rgba(212, 175, 55, 0.6),
        0 0 25px rgba(201, 169, 97, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.whispers h2::before {
    content: '⟡ ';
    margin-right: 1rem;
}

.whispers h2::after {
    content: ' ⟡';
    margin-left: 1rem;
}

.whispers-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.whisper {
    background:
        linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.7) 100%);
    border-left: 5px solid #6a4c93;
    border-right: 1px solid rgba(201, 169, 97, 0.3);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    font-style: italic;
    color: #e0e0e0;
    text-align: left;
    box-shadow:
        0 8px 25px rgba(106, 76, 147, 0.3),
        inset 2px 0 10px rgba(106, 76, 147, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.whisper::before {
    content: '❝';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #6a4c93;
    opacity: 0.3;
    font-style: normal;
}

.whisper:hover {
    transform: translateX(5px);
    border-left-color: #8b5fc7;
    box-shadow:
        0 12px 35px rgba(106, 76, 147, 0.5),
        inset 2px 0 15px rgba(106, 76, 147, 0.3);
}

.whisper p {
    font-size: 1.2rem;
    line-height: 1.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Jokes Section */
.jokes {
    margin: 6rem 0;
    text-align: center;
}

.jokes h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 4rem;
    text-shadow:
        0 0 15px rgba(212, 175, 55, 0.6),
        0 0 25px rgba(201, 169, 97, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.jokes h2::before {
    content: '⟡ ';
    margin-right: 1rem;
}

.jokes h2::after {
    content: ' ⟡';
    margin-left: 1rem;
}

.jokes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.joke {
    background:
        linear-gradient(135deg, rgba(22, 33, 62, 0.7) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(201, 169, 97, 0.2);
    position: relative;
}

.joke::after {
    content: '✦';
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: #c9a961;
    opacity: 0.2;
    font-size: 1.5rem;
}

.joke:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.7);
    box-shadow:
        0 12px 35px rgba(201, 169, 97, 0.3),
        inset 0 1px 0 rgba(201, 169, 97, 0.3);
}

.joke-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.4));
}

.joke p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.05rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 2px solid rgba(201, 169, 97, 0.3);
    position: relative;
}

.footer::before {
    content: '✦ ❋ ✦';
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #16213e 0%, #1a2947 100%);
    color: #c9a961;
    padding: 0 2rem;
    font-size: 1.5rem;
    letter-spacing: 1rem;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

.footer p {
    color: #999;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .title-decoration {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .ornamental-divider {
        font-size: 1.5rem;
        letter-spacing: 1rem;
    }

    .section-divider {
        font-size: 1.8rem;
        letter-spacing: 1rem;
    }

    .countdown {
        gap: 1.5rem;
    }

    .countdown-item {
        padding: 1.5rem 2rem;
        min-width: 110px;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .cards-grid,
    .jokes-container {
        grid-template-columns: 1fr;
    }

    .what-awaits h2,
    .whispers h2,
    .jokes h2 {
        font-size: 2.2rem;
    }

    .corner-ornament {
        font-size: 2.5rem;
    }

    .corner-ornament.top-left,
    .corner-ornament.top-right {
        top: 1rem;
    }

    .corner-ornament.bottom-left,
    .corner-ornament.bottom-right {
        bottom: 1rem;
    }

    .corner-ornament.top-left,
    .corner-ornament.bottom-left {
        left: 1rem;
    }

    .corner-ornament.top-right,
    .corner-ornament.bottom-right {
        right: 1rem;
    }

    /* Smaller constellations on tablets */
    .constellation-1 { width: 150px; right: 10%; }
    .constellation-2 { width: 112px; left: 8%; }
    .constellation-3 { width: 120px; left: 42%; }
    .constellation-4 { width: 105px; right: 6%; }
    .constellation-5 { width: 135px; left: 15%; }
    .constellation-6 { width: 105px; right: 30%; }
    .constellation-7 { width: 135px; left: 8%; }
    .constellation-8 { width: 142px; right: 12%; }
    .constellation-9 { width: 120px; left: 30%; }
    .constellation-10 { width: 90px; right: 20%; }
    .constellation-11 { width: 150px; left: 12%; }
    .constellation-12 { width: 97px; right: 10%; }

    .constellation-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .header {
        padding: 2rem 0 1rem;
    }

    .title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .title-decoration {
        font-size: 1.5rem;
    }

    .title-decoration.left {
        margin-right: 0.5rem;
    }

    .title-decoration.right {
        margin-left: 0.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .description {
        padding: 2rem 1.5rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.85rem;
    }

    .section-divider {
        font-size: 1.5rem;
        letter-spacing: 0.8rem;
        margin: 3rem 0;
    }

    .ornamental-divider {
        font-size: 1.2rem;
        letter-spacing: 0.8rem;
    }

    .corner-ornament {
        font-size: 2rem;
    }

    .what-awaits h2,
    .whispers h2,
    .jokes h2 {
        font-size: 1.8rem;
    }

    /* Even smaller constellations on mobile */
    .constellation-1 { width: 100px; right: 3%; top: 8%; }
    .constellation-2 { width: 75px; left: 3%; top: 10%; }
    .constellation-3 { width: 80px; left: 40%; top: 5%; }
    .constellation-4 { width: 70px; right: 3%; top: 22%; }
    .constellation-5 { width: 90px; left: 15%; top: 25%; }
    .constellation-6 { width: 70px; right: 30%; top: 30%; }
    .constellation-7 { width: 90px; left: 5%; top: 40%; }
    .constellation-8 { width: 95px; right: 10%; top: 45%; }
    .constellation-9 { width: 80px; left: 30%; top: 55%; }
    .constellation-10 { width: 60px; right: 20%; top: 58%; }
    .constellation-11 { width: 100px; left: 10%; top: 70%; }
    .constellation-12 { width: 65px; right: 8%; top: 72%; }

    .constellation-name {
        font-size: 0.7rem;
    }
}
