﻿/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #2c4a9e;
    /* Estimated Deep Blue from logo context */
    --secondary-color: #009FE3;
    /* Lighter Cyan/Blue for accents */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --error-color: #dc3545;

    --font-main: 'Outfit', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto var(--spacing-md);
    border-radius: 2px;
}

.phone-highlight {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(44, 74, 158, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 159, 227, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.site-header {
    padding: var(--spacing-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 60px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-nav a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav .btn {
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Background Image with Overlay */
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding-top: 80px;
    /* Header height */
    position: relative;
    overflow: hidden;
}

/* Decorative background circle */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.05) 0%, rgba(255, 255, 255, 0) 40%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--spacing-lg) 0;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

/* Sections General */
.section {
    padding: var(--spacing-xl) 0;
}

/* Club Section */
.section-club {
    background-color: var(--white);
}

/* Club Section Layout */
.club-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.club-content {
    flex: 1;
}

.club-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.club-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 100%;
    height: auto;
}

.club-text p {
    margin-bottom: var(--spacing-md);
}

/* Benefits Section */
.section-benefits {
    background-color: #e9ecef;
    /* Slightly darker grey */
}

/* Benefits Section Layout */
.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.benefits-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.benefits-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.benefits-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 100%;
    height: auto;
}

.benefit-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

/* Contact Section */
.section-contact {
    background-color: var(--white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-md);
    /* Reduced padding to look cleaner if no border, but let's keep it simple */
}

/* Let's make the form look cleaner, maybe no background box, just clean inputs */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.1);
}

.form-message {
    margin-top: var(--spacing-sm);
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    color: var(--success-color);
}

.form-message.error {
    color: var(--error-color);
}

/* Footer */
.site-footer {
    background-color: #009fe3;
    color: var(--white);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-wave {
    width: 100%;
    display: block;
    line-height: 0;
    /* Prevents tiny gap below image */
}

.footer-wave img {
    width: 100%;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Centers text vertically relative to icons */
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    /* Matches form button */
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
    flex-shrink: 0;
    /* Ensures circle stays round on mobile */
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Animations Modifiers */
.scroll-reveal.pop-in {
    transform: scale(0.5);
}

.scroll-reveal.pop-in.visible {
    transform: scale(1);
}

.scroll-reveal.slide-in-right {
    transform: translateX(50px);
}

.scroll-reveal.slide-in-right.visible {
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Persistent Image Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.img-animate-float {
    animation: float 6s ease-in-out infinite;
}

.img-animate-zoom {
    animation: zoomPulse 8s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 900px) {

    /* Tablet/Mobile breakpoint */
    .club-container,
    .benefits-wrapper {
        flex-direction: column;
    }

    .club-image,
    .benefits-image {
        order: -1;
        /* Show image first on mobile for visual appeal */
        margin-bottom: var(--spacing-md);
        width: 100%;
    }

    .benefits-image {
        order: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .site-header .container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .main-nav ul {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        text-align: center;
        padding-top: 140px;
        /* More space for stacked header */
    }

    .hero-content {
        margin: 0 auto;
    }
}

/* Particle Animation */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Above background, below content */
    pointer-events: none;
}

.circle-container {
    position: absolute;
    transform: translateY(-10vh);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;

    /* Softer contrast requested */
    background-image: radial-gradient(var(--secondary-color),
            var(--secondary-color) 40%,
            rgba(0, 159, 227, 0) 70%);
    opacity: 0.3;
    animation: fadein-frames 200ms infinite, scale-frames 2s infinite;
}

@keyframes fade-frames {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scale-frames {
    0% {
        transform: scale3d(0.4, 0.4, 1);
    }

    50% {
        transform: scale3d(2.2, 2.2, 1);
    }

    100% {
        transform: scale3d(0.4, 0.4, 1);
    }
}

.circle-container:nth-child(1) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-1;
    animation-duration: 8669ms;
    animation-delay: 2843ms;
}

@keyframes move-frames-1 {
    from {
        transform: translate3d(72vw, 101vh, 0);
    }

    to {
        transform: translate3d(14vw, -105vh, 0);
    }
}

.circle-container:nth-child(1) .circle {
    animation-delay: 1170ms;
}

.circle-container:nth-child(2) {
    /* Explicitly targeting child index to ensure specificity */
    width: 10px;
    height: 10px;
    animation-name: move-frames-2;
    animation-duration: 9698ms;
    animation-delay: 5873ms;
}

@keyframes move-frames-2 {
    from {
        transform: translate3d(20vw, 103vh, 0);
    }

    to {
        transform: translate3d(68vw, -115vh, 0);
    }
}

.circle-container:nth-child(2) .circle {
    animation-delay: 3355ms;
}

.circle-container:nth-child(3) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-3;
    animation-duration: 8907ms;
    animation-delay: 2946ms;
}

@keyframes move-frames-3 {
    from {
        transform: translate3d(31vw, 107vh, 0);
    }

    to {
        transform: translate3d(87vw, -107vh, 0);
    }
}

.circle-container:nth-child(3) .circle {
    animation-delay: 3048ms;
}

.circle-container:nth-child(4) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-4;
    animation-duration: 8785ms;
    animation-delay: 8593ms;
}

@keyframes move-frames-4 {
    from {
        transform: translate3d(79vw, 103vh, 0);
    }

    to {
        transform: translate3d(55vw, -125vh, 0);
    }
}

.circle-container:nth-child(4) .circle {
    animation-delay: 1986ms;
}

.circle-container:nth-child(5) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-5;
    animation-duration: 10066ms;
    animation-delay: 8325ms;
}

@keyframes move-frames-5 {
    from {
        transform: translate3d(71vw, 101vh, 0);
    }

    to {
        transform: translate3d(26vw, -129vh, 0);
    }
}

.circle-container:nth-child(5) .circle {
    animation-delay: 3891ms;
}

.circle-container:nth-child(6) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-6;
    animation-duration: 8789ms;
    animation-delay: 1906ms;
}

@keyframes move-frames-6 {
    from {
        transform: translate3d(50vw, 101vh, 0);
    }

    to {
        transform: translate3d(46vw, -129vh, 0);
    }
}

.circle-container:nth-child(6) .circle {
    animation-delay: 1128ms;
}

.circle-container:nth-child(7) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-7;
    animation-duration: 7506ms;
    animation-delay: 7129ms;
}

@keyframes move-frames-7 {
    from {
        transform: translate3d(8vw, 101vh, 0);
    }

    to {
        transform: translate3d(56vw, -113vh, 0);
    }
}

.circle-container:nth-child(7) .circle {
    animation-delay: 676ms;
}

.circle-container:nth-child(8) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-8;
    animation-duration: 10197ms;
    animation-delay: 200ms;
}

@keyframes move-frames-8 {
    from {
        transform: translate3d(10vw, 102vh, 0);
    }

    to {
        transform: translate3d(4vw, -131vh, 0);
    }
}

.circle-container:nth-child(8) .circle {
    animation-delay: 1743ms;
}

.circle-container:nth-child(9) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-9;
    animation-duration: 7518ms;
    animation-delay: 8986ms;
}

@keyframes move-frames-9 {
    from {
        transform: translate3d(46vw, 107vh, 0);
    }

    to {
        transform: translate3d(76vw, -116vh, 0);
    }
}

.circle-container:nth-child(9) .circle {
    animation-delay: 1493ms;
}

.circle-container:nth-child(10) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-10;
    animation-duration: 9199ms;
    animation-delay: 10219ms;
}

@keyframes move-frames-10 {
    from {
        transform: translate3d(80vw, 109vh, 0);
    }

    to {
        transform: translate3d(93vw, -115vh, 0);
    }
}

.circle-container:nth-child(10) .circle {
    animation-delay: 522ms;
}

.circle-container:nth-child(11) {
    /* Explicitly targeting child index to ensure specificity */
    width: 14px;
    height: 14px;
    animation-name: move-frames-11;
    animation-duration: 10676ms;
    animation-delay: 8649ms;
}

@keyframes move-frames-11 {
    from {
        transform: translate3d(25vw, 108vh, 0);
    }

    to {
        transform: translate3d(36vw, -120vh, 0);
    }
}

.circle-container:nth-child(11) .circle {
    animation-delay: 436ms;
}

.circle-container:nth-child(12) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-12;
    animation-duration: 9378ms;
    animation-delay: 6426ms;
}

@keyframes move-frames-12 {
    from {
        transform: translate3d(1vw, 104vh, 0);
    }

    to {
        transform: translate3d(10vw, -124vh, 0);
    }
}

.circle-container:nth-child(12) .circle {
    animation-delay: 353ms;
}

.circle-container:nth-child(13) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-13;
    animation-duration: 10164ms;
    animation-delay: 6895ms;
}

@keyframes move-frames-13 {
    from {
        transform: translate3d(3vw, 101vh, 0);
    }

    to {
        transform: translate3d(72vw, -127vh, 0);
    }
}

.circle-container:nth-child(13) .circle {
    animation-delay: 2005ms;
}

.circle-container:nth-child(14) {
    /* Explicitly targeting child index to ensure specificity */
    width: 14px;
    height: 14px;
    animation-name: move-frames-14;
    animation-duration: 8787ms;
    animation-delay: 7247ms;
}

@keyframes move-frames-14 {
    from {
        transform: translate3d(29vw, 100vh, 0);
    }

    to {
        transform: translate3d(45vw, -128vh, 0);
    }
}

.circle-container:nth-child(14) .circle {
    animation-delay: 3601ms;
}

.circle-container:nth-child(15) {
    /* Explicitly targeting child index to ensure specificity */
    width: 14px;
    height: 14px;
    animation-name: move-frames-15;
    animation-duration: 10634ms;
    animation-delay: 7949ms;
}

@keyframes move-frames-15 {
    from {
        transform: translate3d(0vw, 109vh, 0);
    }

    to {
        transform: translate3d(21vw, -134vh, 0);
    }
}

.circle-container:nth-child(15) .circle {
    animation-delay: 3614ms;
}

.circle-container:nth-child(16) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-16;
    animation-duration: 10167ms;
    animation-delay: 10739ms;
}

@keyframes move-frames-16 {
    from {
        transform: translate3d(54vw, 104vh, 0);
    }

    to {
        transform: translate3d(67vw, -110vh, 0);
    }
}

.circle-container:nth-child(16) .circle {
    animation-delay: 3732ms;
}

.circle-container:nth-child(17) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-17;
    animation-duration: 10586ms;
    animation-delay: 4010ms;
}

@keyframes move-frames-17 {
    from {
        transform: translate3d(77vw, 108vh, 0);
    }

    to {
        transform: translate3d(67vw, -121vh, 0);
    }
}

.circle-container:nth-child(17) .circle {
    animation-delay: 2235ms;
}

.circle-container:nth-child(18) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-18;
    animation-duration: 9061ms;
    animation-delay: 7364ms;
}

@keyframes move-frames-18 {
    from {
        transform: translate3d(16vw, 108vh, 0);
    }

    to {
        transform: translate3d(20vw, -132vh, 0);
    }
}

.circle-container:nth-child(18) .circle {
    animation-delay: 3474ms;
}

.circle-container:nth-child(19) {
    /* Explicitly targeting child index to ensure specificity */
    width: 10px;
    height: 10px;
    animation-name: move-frames-19;
    animation-duration: 7569ms;
    animation-delay: 4521ms;
}

@keyframes move-frames-19 {
    from {
        transform: translate3d(32vw, 110vh, 0);
    }

    to {
        transform: translate3d(61vw, -125vh, 0);
    }
}

.circle-container:nth-child(19) .circle {
    animation-delay: 1471ms;
}

.circle-container:nth-child(20) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-20;
    animation-duration: 8450ms;
    animation-delay: 845ms;
}

@keyframes move-frames-20 {
    from {
        transform: translate3d(64vw, 103vh, 0);
    }

    to {
        transform: translate3d(14vw, -110vh, 0);
    }
}

.circle-container:nth-child(20) .circle {
    animation-delay: 1061ms;
}

.circle-container:nth-child(21) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-21;
    animation-duration: 9868ms;
    animation-delay: 2708ms;
}

@keyframes move-frames-21 {
    from {
        transform: translate3d(47vw, 103vh, 0);
    }

    to {
        transform: translate3d(84vw, -111vh, 0);
    }
}

.circle-container:nth-child(21) .circle {
    animation-delay: 352ms;
}

.circle-container:nth-child(22) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-22;
    animation-duration: 8352ms;
    animation-delay: 1172ms;
}

@keyframes move-frames-22 {
    from {
        transform: translate3d(84vw, 107vh, 0);
    }

    to {
        transform: translate3d(16vw, -128vh, 0);
    }
}

.circle-container:nth-child(22) .circle {
    animation-delay: 2066ms;
}

.circle-container:nth-child(23) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-23;
    animation-duration: 7022ms;
    animation-delay: 2284ms;
}

@keyframes move-frames-23 {
    from {
        transform: translate3d(33vw, 109vh, 0);
    }

    to {
        transform: translate3d(46vw, -135vh, 0);
    }
}

.circle-container:nth-child(23) .circle {
    animation-delay: 1211ms;
}

.circle-container:nth-child(24) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-24;
    animation-duration: 10483ms;
    animation-delay: 528ms;
}

@keyframes move-frames-24 {
    from {
        transform: translate3d(66vw, 109vh, 0);
    }

    to {
        transform: translate3d(8vw, -137vh, 0);
    }
}

.circle-container:nth-child(24) .circle {
    animation-delay: 1600ms;
}

.circle-container:nth-child(25) {
    /* Explicitly targeting child index to ensure specificity */
    width: 9px;
    height: 9px;
    animation-name: move-frames-25;
    animation-duration: 8019ms;
    animation-delay: 7362ms;
}

@keyframes move-frames-25 {
    from {
        transform: translate3d(3vw, 105vh, 0);
    }

    to {
        transform: translate3d(68vw, -119vh, 0);
    }
}

.circle-container:nth-child(25) .circle {
    animation-delay: 392ms;
}

.circle-container:nth-child(26) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-26;
    animation-duration: 8734ms;
    animation-delay: 5860ms;
}

@keyframes move-frames-26 {
    from {
        transform: translate3d(66vw, 100vh, 0);
    }

    to {
        transform: translate3d(83vw, -130vh, 0);
    }
}

.circle-container:nth-child(26) .circle {
    animation-delay: 1835ms;
}

.circle-container:nth-child(27) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-27;
    animation-duration: 9553ms;
    animation-delay: 7258ms;
}

@keyframes move-frames-27 {
    from {
        transform: translate3d(34vw, 109vh, 0);
    }

    to {
        transform: translate3d(80vw, -129vh, 0);
    }
}

.circle-container:nth-child(27) .circle {
    animation-delay: 473ms;
}

.circle-container:nth-child(28) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-28;
    animation-duration: 7313ms;
    animation-delay: 8679ms;
}

@keyframes move-frames-28 {
    from {
        transform: translate3d(23vw, 104vh, 0);
    }

    to {
        transform: translate3d(33vw, -105vh, 0);
    }
}

.circle-container:nth-child(28) .circle {
    animation-delay: 2665ms;
}

.circle-container:nth-child(29) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-29;
    animation-duration: 10769ms;
    animation-delay: 7581ms;
}

@keyframes move-frames-29 {
    from {
        transform: translate3d(98vw, 104vh, 0);
    }

    to {
        transform: translate3d(51vw, -115vh, 0);
    }
}

.circle-container:nth-child(29) .circle {
    animation-delay: 2321ms;
}

.circle-container:nth-child(30) {
    /* Explicitly targeting child index to ensure specificity */
    width: 9px;
    height: 9px;
    animation-name: move-frames-30;
    animation-duration: 10816ms;
    animation-delay: 8876ms;
}

@keyframes move-frames-30 {
    from {
        transform: translate3d(6vw, 100vh, 0);
    }

    to {
        transform: translate3d(66vw, -121vh, 0);
    }
}

.circle-container:nth-child(30) .circle {
    animation-delay: 2931ms;
}

.circle-container:nth-child(31) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-31;
    animation-duration: 9582ms;
    animation-delay: 4677ms;
}

@keyframes move-frames-31 {
    from {
        transform: translate3d(49vw, 102vh, 0);
    }

    to {
        transform: translate3d(93vw, -102vh, 0);
    }
}

.circle-container:nth-child(31) .circle {
    animation-delay: 3075ms;
}

.circle-container:nth-child(32) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-32;
    animation-duration: 10091ms;
    animation-delay: 1939ms;
}

@keyframes move-frames-32 {
    from {
        transform: translate3d(75vw, 110vh, 0);
    }

    to {
        transform: translate3d(62vw, -136vh, 0);
    }
}

.circle-container:nth-child(32) .circle {
    animation-delay: 2493ms;
}

.circle-container:nth-child(33) {
    /* Explicitly targeting child index to ensure specificity */
    width: 9px;
    height: 9px;
    animation-name: move-frames-33;
    animation-duration: 7081ms;
    animation-delay: 7103ms;
}

@keyframes move-frames-33 {
    from {
        transform: translate3d(14vw, 107vh, 0);
    }

    to {
        transform: translate3d(27vw, -118vh, 0);
    }
}

.circle-container:nth-child(33) .circle {
    animation-delay: 1940ms;
}

.circle-container:nth-child(34) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-34;
    animation-duration: 7904ms;
    animation-delay: 8386ms;
}

@keyframes move-frames-34 {
    from {
        transform: translate3d(28vw, 109vh, 0);
    }

    to {
        transform: translate3d(56vw, -116vh, 0);
    }
}

.circle-container:nth-child(34) .circle {
    animation-delay: 2636ms;
}

.circle-container:nth-child(35) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-35;
    animation-duration: 7494ms;
    animation-delay: 9157ms;
}

@keyframes move-frames-35 {
    from {
        transform: translate3d(91vw, 110vh, 0);
    }

    to {
        transform: translate3d(26vw, -121vh, 0);
    }
}

.circle-container:nth-child(35) .circle {
    animation-delay: 2366ms;
}

.circle-container:nth-child(36) {
    /* Explicitly targeting child index to ensure specificity */
    width: 9px;
    height: 9px;
    animation-name: move-frames-36;
    animation-duration: 8032ms;
    animation-delay: 10989ms;
}

@keyframes move-frames-36 {
    from {
        transform: translate3d(72vw, 103vh, 0);
    }

    to {
        transform: translate3d(34vw, -110vh, 0);
    }
}

.circle-container:nth-child(36) .circle {
    animation-delay: 3199ms;
}

.circle-container:nth-child(37) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-37;
    animation-duration: 7816ms;
    animation-delay: 2244ms;
}

@keyframes move-frames-37 {
    from {
        transform: translate3d(90vw, 104vh, 0);
    }

    to {
        transform: translate3d(98vw, -123vh, 0);
    }
}

.circle-container:nth-child(37) .circle {
    animation-delay: 2987ms;
}

.circle-container:nth-child(38) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-38;
    animation-duration: 8689ms;
    animation-delay: 7470ms;
}

@keyframes move-frames-38 {
    from {
        transform: translate3d(7vw, 104vh, 0);
    }

    to {
        transform: translate3d(79vw, -117vh, 0);
    }
}

.circle-container:nth-child(38) .circle {
    animation-delay: 2983ms;
}

.circle-container:nth-child(39) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-39;
    animation-duration: 10836ms;
    animation-delay: 76ms;
}

@keyframes move-frames-39 {
    from {
        transform: translate3d(38vw, 110vh, 0);
    }

    to {
        transform: translate3d(83vw, -121vh, 0);
    }
}

.circle-container:nth-child(39) .circle {
    animation-delay: 443ms;
}

.circle-container:nth-child(40) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-40;
    animation-duration: 7763ms;
    animation-delay: 6472ms;
}

@keyframes move-frames-40 {
    from {
        transform: translate3d(81vw, 107vh, 0);
    }

    to {
        transform: translate3d(47vw, -117vh, 0);
    }
}

.circle-container:nth-child(40) .circle {
    animation-delay: 1428ms;
}

.circle-container:nth-child(41) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-41;
    animation-duration: 10721ms;
    animation-delay: 7602ms;
}

@keyframes move-frames-41 {
    from {
        transform: translate3d(85vw, 108vh, 0);
    }

    to {
        transform: translate3d(99vw, -110vh, 0);
    }
}

.circle-container:nth-child(41) .circle {
    animation-delay: 648ms;
}

.circle-container:nth-child(42) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-42;
    animation-duration: 8384ms;
    animation-delay: 4227ms;
}

@keyframes move-frames-42 {
    from {
        transform: translate3d(11vw, 104vh, 0);
    }

    to {
        transform: translate3d(64vw, -112vh, 0);
    }
}

.circle-container:nth-child(42) .circle {
    animation-delay: 378ms;
}

.circle-container:nth-child(43) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-43;
    animation-duration: 9968ms;
    animation-delay: 4257ms;
}

@keyframes move-frames-43 {
    from {
        transform: translate3d(22vw, 102vh, 0);
    }

    to {
        transform: translate3d(89vw, -126vh, 0);
    }
}

.circle-container:nth-child(43) .circle {
    animation-delay: 785ms;
}

.circle-container:nth-child(44) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-44;
    animation-duration: 7845ms;
    animation-delay: 4208ms;
}

@keyframes move-frames-44 {
    from {
        transform: translate3d(31vw, 105vh, 0);
    }

    to {
        transform: translate3d(66vw, -105vh, 0);
    }
}

.circle-container:nth-child(44) .circle {
    animation-delay: 3706ms;
}

.circle-container:nth-child(45) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-45;
    animation-duration: 10364ms;
    animation-delay: 8635ms;
}

@keyframes move-frames-45 {
    from {
        transform: translate3d(52vw, 100vh, 0);
    }

    to {
        transform: translate3d(19vw, -107vh, 0);
    }
}

.circle-container:nth-child(45) .circle {
    animation-delay: 3249ms;
}

.circle-container:nth-child(46) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-46;
    animation-duration: 7559ms;
    animation-delay: 8425ms;
}

@keyframes move-frames-46 {
    from {
        transform: translate3d(20vw, 104vh, 0);
    }

    to {
        transform: translate3d(18vw, -127vh, 0);
    }
}

.circle-container:nth-child(46) .circle {
    animation-delay: 3437ms;
}

.circle-container:nth-child(47) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-47;
    animation-duration: 8769ms;
    animation-delay: 3121ms;
}

@keyframes move-frames-47 {
    from {
        transform: translate3d(75vw, 102vh, 0);
    }

    to {
        transform: translate3d(54vw, -126vh, 0);
    }
}

.circle-container:nth-child(47) .circle {
    animation-delay: 1439ms;
}

.circle-container:nth-child(48) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-48;
    animation-duration: 7954ms;
    animation-delay: 2665ms;
}

@keyframes move-frames-48 {
    from {
        transform: translate3d(67vw, 104vh, 0);
    }

    to {
        transform: translate3d(87vw, -109vh, 0);
    }
}

.circle-container:nth-child(48) .circle {
    animation-delay: 520ms;
}

.circle-container:nth-child(49) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-49;
    animation-duration: 7819ms;
    animation-delay: 8882ms;
}

@keyframes move-frames-49 {
    from {
        transform: translate3d(72vw, 108vh, 0);
    }

    to {
        transform: translate3d(87vw, -130vh, 0);
    }
}

.circle-container:nth-child(49) .circle {
    animation-delay: 3238ms;
}

.circle-container:nth-child(50) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-50;
    animation-duration: 8245ms;
    animation-delay: 2335ms;
}

@keyframes move-frames-50 {
    from {
        transform: translate3d(33vw, 103vh, 0);
    }

    to {
        transform: translate3d(61vw, -126vh, 0);
    }
}

.circle-container:nth-child(50) .circle {
    animation-delay: 1271ms;
}

.circle-container:nth-child(51) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-51;
    animation-duration: 8385ms;
    animation-delay: 5766ms;
}

@keyframes move-frames-51 {
    from {
        transform: translate3d(99vw, 106vh, 0);
    }

    to {
        transform: translate3d(14vw, -113vh, 0);
    }
}

.circle-container:nth-child(51) .circle {
    animation-delay: 2382ms;
}

.circle-container:nth-child(52) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-52;
    animation-duration: 8598ms;
    animation-delay: 7876ms;
}

@keyframes move-frames-52 {
    from {
        transform: translate3d(53vw, 105vh, 0);
    }

    to {
        transform: translate3d(63vw, -117vh, 0);
    }
}

.circle-container:nth-child(52) .circle {
    animation-delay: 2263ms;
}

.circle-container:nth-child(53) {
    /* Explicitly targeting child index to ensure specificity */
    width: 9px;
    height: 9px;
    animation-name: move-frames-53;
    animation-duration: 10012ms;
    animation-delay: 332ms;
}

@keyframes move-frames-53 {
    from {
        transform: translate3d(15vw, 104vh, 0);
    }

    to {
        transform: translate3d(91vw, -108vh, 0);
    }
}

.circle-container:nth-child(53) .circle {
    animation-delay: 2808ms;
}

.circle-container:nth-child(54) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-54;
    animation-duration: 7992ms;
    animation-delay: 4119ms;
}

@keyframes move-frames-54 {
    from {
        transform: translate3d(56vw, 104vh, 0);
    }

    to {
        transform: translate3d(98vw, -132vh, 0);
    }
}

.circle-container:nth-child(54) .circle {
    animation-delay: 1597ms;
}

.circle-container:nth-child(55) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-55;
    animation-duration: 8530ms;
    animation-delay: 5650ms;
}

@keyframes move-frames-55 {
    from {
        transform: translate3d(40vw, 106vh, 0);
    }

    to {
        transform: translate3d(74vw, -118vh, 0);
    }
}

.circle-container:nth-child(55) .circle {
    animation-delay: 2438ms;
}

.circle-container:nth-child(56) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-56;
    animation-duration: 10462ms;
    animation-delay: 10340ms;
}

@keyframes move-frames-56 {
    from {
        transform: translate3d(65vw, 104vh, 0);
    }

    to {
        transform: translate3d(90vw, -124vh, 0);
    }
}

.circle-container:nth-child(56) .circle {
    animation-delay: 2184ms;
}

.circle-container:nth-child(57) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-57;
    animation-duration: 7132ms;
    animation-delay: 2821ms;
}

@keyframes move-frames-57 {
    from {
        transform: translate3d(15vw, 100vh, 0);
    }

    to {
        transform: translate3d(26vw, -100vh, 0);
    }
}

.circle-container:nth-child(57) .circle {
    animation-delay: 2364ms;
}

.circle-container:nth-child(58) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-58;
    animation-duration: 8805ms;
    animation-delay: 1098ms;
}

@keyframes move-frames-58 {
    from {
        transform: translate3d(87vw, 101vh, 0);
    }

    to {
        transform: translate3d(89vw, -129vh, 0);
    }
}

.circle-container:nth-child(58) .circle {
    animation-delay: 154ms;
}

.circle-container:nth-child(59) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-59;
    animation-duration: 10402ms;
    animation-delay: 4986ms;
}

@keyframes move-frames-59 {
    from {
        transform: translate3d(35vw, 108vh, 0);
    }

    to {
        transform: translate3d(43vw, -128vh, 0);
    }
}

.circle-container:nth-child(59) .circle {
    animation-delay: 1768ms;
}

.circle-container:nth-child(60) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-60;
    animation-duration: 9801ms;
    animation-delay: 6461ms;
}

@keyframes move-frames-60 {
    from {
        transform: translate3d(51vw, 105vh, 0);
    }

    to {
        transform: translate3d(79vw, -109vh, 0);
    }
}

.circle-container:nth-child(60) .circle {
    animation-delay: 2173ms;
}

.circle-container:nth-child(61) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-61;
    animation-duration: 8747ms;
    animation-delay: 9488ms;
}

@keyframes move-frames-61 {
    from {
        transform: translate3d(83vw, 110vh, 0);
    }

    to {
        transform: translate3d(79vw, -140vh, 0);
    }
}

.circle-container:nth-child(61) .circle {
    animation-delay: 2376ms;
}

.circle-container:nth-child(62) {
    /* Explicitly targeting child index to ensure specificity */
    width: 12px;
    height: 12px;
    animation-name: move-frames-62;
    animation-duration: 7846ms;
    animation-delay: 10129ms;
}

@keyframes move-frames-62 {
    from {
        transform: translate3d(80vw, 107vh, 0);
    }

    to {
        transform: translate3d(56vw, -130vh, 0);
    }
}

.circle-container:nth-child(62) .circle {
    animation-delay: 1083ms;
}

.circle-container:nth-child(63) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-63;
    animation-duration: 8582ms;
    animation-delay: 6030ms;
}

@keyframes move-frames-63 {
    from {
        transform: translate3d(32vw, 104vh, 0);
    }

    to {
        transform: translate3d(41vw, -111vh, 0);
    }
}

.circle-container:nth-child(63) .circle {
    animation-delay: 596ms;
}

.circle-container:nth-child(64) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-64;
    animation-duration: 8241ms;
    animation-delay: 9907ms;
}

@keyframes move-frames-64 {
    from {
        transform: translate3d(4vw, 103vh, 0);
    }

    to {
        transform: translate3d(22vw, -103vh, 0);
    }
}

.circle-container:nth-child(64) .circle {
    animation-delay: 2026ms;
}

.circle-container:nth-child(65) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-65;
    animation-duration: 10324ms;
    animation-delay: 5952ms;
}

@keyframes move-frames-65 {
    from {
        transform: translate3d(87vw, 110vh, 0);
    }

    to {
        transform: translate3d(10vw, -124vh, 0);
    }
}

.circle-container:nth-child(65) .circle {
    animation-delay: 3868ms;
}

.circle-container:nth-child(66) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-66;
    animation-duration: 9289ms;
    animation-delay: 5184ms;
}

@keyframes move-frames-66 {
    from {
        transform: translate3d(11vw, 104vh, 0);
    }

    to {
        transform: translate3d(0vw, -116vh, 0);
    }
}

.circle-container:nth-child(66) .circle {
    animation-delay: 3194ms;
}

.circle-container:nth-child(67) {
    /* Explicitly targeting child index to ensure specificity */
    width: 5px;
    height: 5px;
    animation-name: move-frames-67;
    animation-duration: 8589ms;
    animation-delay: 619ms;
}

@keyframes move-frames-67 {
    from {
        transform: translate3d(13vw, 103vh, 0);
    }

    to {
        transform: translate3d(65vw, -123vh, 0);
    }
}

.circle-container:nth-child(67) .circle {
    animation-delay: 1901ms;
}

.circle-container:nth-child(68) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-68;
    animation-duration: 10336ms;
    animation-delay: 6229ms;
}

@keyframes move-frames-68 {
    from {
        transform: translate3d(23vw, 102vh, 0);
    }

    to {
        transform: translate3d(43vw, -117vh, 0);
    }
}

.circle-container:nth-child(68) .circle {
    animation-delay: 1239ms;
}

.circle-container:nth-child(69) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-69;
    animation-duration: 8554ms;
    animation-delay: 9823ms;
}

@keyframes move-frames-69 {
    from {
        transform: translate3d(67vw, 109vh, 0);
    }

    to {
        transform: translate3d(90vw, -111vh, 0);
    }
}

.circle-container:nth-child(69) .circle {
    animation-delay: 3812ms;
}

.circle-container:nth-child(70) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-70;
    animation-duration: 9321ms;
    animation-delay: 7263ms;
}

@keyframes move-frames-70 {
    from {
        transform: translate3d(33vw, 109vh, 0);
    }

    to {
        transform: translate3d(88vw, -130vh, 0);
    }
}

.circle-container:nth-child(70) .circle {
    animation-delay: 2372ms;
}

.circle-container:nth-child(71) {
    /* Explicitly targeting child index to ensure specificity */
    width: 10px;
    height: 10px;
    animation-name: move-frames-71;
    animation-duration: 7556ms;
    animation-delay: 8777ms;
}

@keyframes move-frames-71 {
    from {
        transform: translate3d(95vw, 108vh, 0);
    }

    to {
        transform: translate3d(45vw, -130vh, 0);
    }
}

.circle-container:nth-child(71) .circle {
    animation-delay: 267ms;
}

.circle-container:nth-child(72) {
    /* Explicitly targeting child index to ensure specificity */
    width: 10px;
    height: 10px;
    animation-name: move-frames-72;
    animation-duration: 7305ms;
    animation-delay: 2308ms;
}

@keyframes move-frames-72 {
    from {
        transform: translate3d(68vw, 109vh, 0);
    }

    to {
        transform: translate3d(58vw, -119vh, 0);
    }
}

.circle-container:nth-child(72) .circle {
    animation-delay: 2660ms;
}

.circle-container:nth-child(73) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-73;
    animation-duration: 9475ms;
    animation-delay: 1037ms;
}

@keyframes move-frames-73 {
    from {
        transform: translate3d(75vw, 102vh, 0);
    }

    to {
        transform: translate3d(57vw, -119vh, 0);
    }
}

.circle-container:nth-child(73) .circle {
    animation-delay: 738ms;
}

.circle-container:nth-child(74) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-74;
    animation-duration: 8508ms;
    animation-delay: 1162ms;
}

@keyframes move-frames-74 {
    from {
        transform: translate3d(5vw, 109vh, 0);
    }

    to {
        transform: translate3d(47vw, -139vh, 0);
    }
}

.circle-container:nth-child(74) .circle {
    animation-delay: 1547ms;
}

.circle-container:nth-child(75) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-75;
    animation-duration: 7943ms;
    animation-delay: 9242ms;
}

@keyframes move-frames-75 {
    from {
        transform: translate3d(27vw, 107vh, 0);
    }

    to {
        transform: translate3d(36vw, -108vh, 0);
    }
}

.circle-container:nth-child(75) .circle {
    animation-delay: 2838ms;
}

.circle-container:nth-child(76) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-76;
    animation-duration: 7382ms;
    animation-delay: 5090ms;
}

@keyframes move-frames-76 {
    from {
        transform: translate3d(64vw, 103vh, 0);
    }

    to {
        transform: translate3d(38vw, -115vh, 0);
    }
}

.circle-container:nth-child(76) .circle {
    animation-delay: 636ms;
}

.circle-container:nth-child(77) {
    /* Explicitly targeting child index to ensure specificity */
    width: 8px;
    height: 8px;
    animation-name: move-frames-77;
    animation-duration: 9087ms;
    animation-delay: 9380ms;
}

@keyframes move-frames-77 {
    from {
        transform: translate3d(77vw, 102vh, 0);
    }

    to {
        transform: translate3d(26vw, -113vh, 0);
    }
}

.circle-container:nth-child(77) .circle {
    animation-delay: 1206ms;
}

.circle-container:nth-child(78) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-78;
    animation-duration: 9424ms;
    animation-delay: 9351ms;
}

@keyframes move-frames-78 {
    from {
        transform: translate3d(2vw, 106vh, 0);
    }

    to {
        transform: translate3d(17vw, -109vh, 0);
    }
}

.circle-container:nth-child(78) .circle {
    animation-delay: 3025ms;
}

.circle-container:nth-child(79) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-79;
    animation-duration: 10040ms;
    animation-delay: 7364ms;
}

@keyframes move-frames-79 {
    from {
        transform: translate3d(45vw, 100vh, 0);
    }

    to {
        transform: translate3d(43vw, -115vh, 0);
    }
}

.circle-container:nth-child(79) .circle {
    animation-delay: 3601ms;
}

.circle-container:nth-child(80) {
    /* Explicitly targeting child index to ensure specificity */
    width: 10px;
    height: 10px;
    animation-name: move-frames-80;
    animation-duration: 8909ms;
    animation-delay: 4959ms;
}

@keyframes move-frames-80 {
    from {
        transform: translate3d(28vw, 107vh, 0);
    }

    to {
        transform: translate3d(59vw, -131vh, 0);
    }
}

.circle-container:nth-child(80) .circle {
    animation-delay: 2512ms;
}

.circle-container:nth-child(81) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-81;
    animation-duration: 9362ms;
    animation-delay: 7025ms;
}

@keyframes move-frames-81 {
    from {
        transform: translate3d(6vw, 107vh, 0);
    }

    to {
        transform: translate3d(93vw, -127vh, 0);
    }
}

.circle-container:nth-child(81) .circle {
    animation-delay: 2521ms;
}

.circle-container:nth-child(82) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-82;
    animation-duration: 7048ms;
    animation-delay: 3945ms;
}

@keyframes move-frames-82 {
    from {
        transform: translate3d(100vw, 104vh, 0);
    }

    to {
        transform: translate3d(38vw, -108vh, 0);
    }
}

.circle-container:nth-child(82) .circle {
    animation-delay: 156ms;
}

.circle-container:nth-child(83) {
    /* Explicitly targeting child index to ensure specificity */
    width: 10px;
    height: 10px;
    animation-name: move-frames-83;
    animation-duration: 10225ms;
    animation-delay: 10708ms;
}

@keyframes move-frames-83 {
    from {
        transform: translate3d(3vw, 104vh, 0);
    }

    to {
        transform: translate3d(57vw, -122vh, 0);
    }
}

.circle-container:nth-child(83) .circle {
    animation-delay: 1644ms;
}

.circle-container:nth-child(84) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-84;
    animation-duration: 9730ms;
    animation-delay: 1747ms;
}

@keyframes move-frames-84 {
    from {
        transform: translate3d(3vw, 108vh, 0);
    }

    to {
        transform: translate3d(69vw, -131vh, 0);
    }
}

.circle-container:nth-child(84) .circle {
    animation-delay: 2887ms;
}

.circle-container:nth-child(85) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-85;
    animation-duration: 7941ms;
    animation-delay: 2745ms;
}

@keyframes move-frames-85 {
    from {
        transform: translate3d(67vw, 102vh, 0);
    }

    to {
        transform: translate3d(70vw, -111vh, 0);
    }
}

.circle-container:nth-child(85) .circle {
    animation-delay: 787ms;
}

.circle-container:nth-child(86) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-86;
    animation-duration: 8276ms;
    animation-delay: 8390ms;
}

@keyframes move-frames-86 {
    from {
        transform: translate3d(63vw, 105vh, 0);
    }

    to {
        transform: translate3d(12vw, -128vh, 0);
    }
}

.circle-container:nth-child(86) .circle {
    animation-delay: 415ms;
}

.circle-container:nth-child(87) {
    /* Explicitly targeting child index to ensure specificity */
    width: 12px;
    height: 12px;
    animation-name: move-frames-87;
    animation-duration: 10912ms;
    animation-delay: 9072ms;
}

@keyframes move-frames-87 {
    from {
        transform: translate3d(21vw, 106vh, 0);
    }

    to {
        transform: translate3d(18vw, -120vh, 0);
    }
}

.circle-container:nth-child(87) .circle {
    animation-delay: 2214ms;
}

.circle-container:nth-child(88) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-88;
    animation-duration: 7263ms;
    animation-delay: 3443ms;
}

@keyframes move-frames-88 {
    from {
        transform: translate3d(34vw, 104vh, 0);
    }

    to {
        transform: translate3d(76vw, -108vh, 0);
    }
}

.circle-container:nth-child(88) .circle {
    animation-delay: 2262ms;
}

.circle-container:nth-child(89) {
    /* Explicitly targeting child index to ensure specificity */
    width: 10px;
    height: 10px;
    animation-name: move-frames-89;
    animation-duration: 9051ms;
    animation-delay: 278ms;
}

@keyframes move-frames-89 {
    from {
        transform: translate3d(100vw, 100vh, 0);
    }

    to {
        transform: translate3d(60vw, -101vh, 0);
    }
}

.circle-container:nth-child(89) .circle {
    animation-delay: 802ms;
}

.circle-container:nth-child(90) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-90;
    animation-duration: 10172ms;
    animation-delay: 576ms;
}

@keyframes move-frames-90 {
    from {
        transform: translate3d(5vw, 101vh, 0);
    }

    to {
        transform: translate3d(0vw, -106vh, 0);
    }
}

.circle-container:nth-child(90) .circle {
    animation-delay: 1659ms;
}

.circle-container:nth-child(91) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-91;
    animation-duration: 10933ms;
    animation-delay: 5724ms;
}

@keyframes move-frames-91 {
    from {
        transform: translate3d(14vw, 106vh, 0);
    }

    to {
        transform: translate3d(27vw, -135vh, 0);
    }
}

.circle-container:nth-child(91) .circle {
    animation-delay: 627ms;
}

.circle-container:nth-child(92) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-92;
    animation-duration: 9337ms;
    animation-delay: 5286ms;
}

@keyframes move-frames-92 {
    from {
        transform: translate3d(96vw, 109vh, 0);
    }

    to {
        transform: translate3d(18vw, -136vh, 0);
    }
}

.circle-container:nth-child(92) .circle {
    animation-delay: 926ms;
}

.circle-container:nth-child(93) {
    /* Explicitly targeting child index to ensure specificity */
    width: 7px;
    height: 7px;
    animation-name: move-frames-93;
    animation-duration: 9765ms;
    animation-delay: 5384ms;
}

@keyframes move-frames-93 {
    from {
        transform: translate3d(17vw, 102vh, 0);
    }

    to {
        transform: translate3d(39vw, -111vh, 0);
    }
}

.circle-container:nth-child(93) .circle {
    animation-delay: 214ms;
}

.circle-container:nth-child(94) {
    /* Explicitly targeting child index to ensure specificity */
    width: 14px;
    height: 14px;
    animation-name: move-frames-94;
    animation-duration: 8293ms;
    animation-delay: 10674ms;
}

@keyframes move-frames-94 {
    from {
        transform: translate3d(68vw, 109vh, 0);
    }

    to {
        transform: translate3d(18vw, -133vh, 0);
    }
}

.circle-container:nth-child(94) .circle {
    animation-delay: 2788ms;
}

.circle-container:nth-child(95) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-95;
    animation-duration: 7458ms;
    animation-delay: 8227ms;
}

@keyframes move-frames-95 {
    from {
        transform: translate3d(92vw, 106vh, 0);
    }

    to {
        transform: translate3d(21vw, -120vh, 0);
    }
}

.circle-container:nth-child(95) .circle {
    animation-delay: 1731ms;
}

.circle-container:nth-child(96) {
    /* Explicitly targeting child index to ensure specificity */
    width: 4px;
    height: 4px;
    animation-name: move-frames-96;
    animation-duration: 10293ms;
    animation-delay: 599ms;
}

@keyframes move-frames-96 {
    from {
        transform: translate3d(17vw, 105vh, 0);
    }

    to {
        transform: translate3d(47vw, -108vh, 0);
    }
}

.circle-container:nth-child(96) .circle {
    animation-delay: 1726ms;
}

.circle-container:nth-child(97) {
    /* Explicitly targeting child index to ensure specificity */
    width: 11px;
    height: 11px;
    animation-name: move-frames-97;
    animation-duration: 9197ms;
    animation-delay: 7648ms;
}

@keyframes move-frames-97 {
    from {
        transform: translate3d(7vw, 107vh, 0);
    }

    to {
        transform: translate3d(9vw, -129vh, 0);
    }
}

.circle-container:nth-child(97) .circle {
    animation-delay: 1967ms;
}

.circle-container:nth-child(98) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-98;
    animation-duration: 10885ms;
    animation-delay: 6218ms;
}

@keyframes move-frames-98 {
    from {
        transform: translate3d(43vw, 108vh, 0);
    }

    to {
        transform: translate3d(11vw, -108vh, 0);
    }
}

.circle-container:nth-child(98) .circle {
    animation-delay: 873ms;
}

.circle-container:nth-child(99) {
    /* Explicitly targeting child index to ensure specificity */
    width: 6px;
    height: 6px;
    animation-name: move-frames-99;
    animation-duration: 10880ms;
    animation-delay: 2761ms;
}

@keyframes move-frames-99 {
    from {
        transform: translate3d(89vw, 109vh, 0);
    }

    to {
        transform: translate3d(78vw, -137vh, 0);
    }
}

.circle-container:nth-child(99) .circle {
    animation-delay: 723ms;
}

.circle-container:nth-child(100) {
    /* Explicitly targeting child index to ensure specificity */
    width: 13px;
    height: 13px;
    animation-name: move-frames-100;
    animation-duration: 7954ms;
    animation-delay: 6106ms;
}

@keyframes move-frames-100 {
    from {
        transform: translate3d(6vw, 109vh, 0);
    }

    to {
        transform: translate3d(41vw, -137vh, 0);
    }
}

.circle-container:nth-child(100) .circle {
    animation-delay: 448ms;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    margin: 20px 0;
    text-align: left;
    max-height: 60vh;
    overflow-y: auto;
}