/* Base Reset and Fonts */
:root {
    --primary-color: #FFFFFF;
    /* Pure White */
    --hover-color: #E0E0E0;
    /* Silvery Gray */
    --bg-color: #000000;
    /* Deep Black */
    --card-bg: #0A0A0A;
    /* Near Black */
    --text-color: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
    /* Ensure scrolled sections aren't hidden behind header */
}

/* Constants for Layout */
:root {
    --top-bar-height: 40px;
}

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

/* Cinematic Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://reen.codes/assets/noise.png');
    /* Subtle noise texture */
    opacity: 0.04;
    pointer-events: none;
    z-index: 10000;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-color);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: flex-end;
    /* Align links/burger to right */
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: var(--top-bar-height);
    /* Push down by top bar height */
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    /* Center logo absolutely */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 90px;
    /* Increased size significantly */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-links li a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all var(--transition-speed);
}

/* Top Announcement Bar */
.top-announcement-bar {
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    /* Above navbar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /* Hide overflow */
}

.marquee-track {
    display: flex;
    width: max-content;
    /* Ensure it grows to fit all content */
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Space between textual items */
    padding-right: 2rem;
    /* Maintain gap at the end of the block */
    flex-shrink: 0;
    white-space: nowrap;
}

.marquee-content span {
    display: inline-block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move by 50% of the total width (which is one full set of content) */
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #000000;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: all var(--transition-speed);
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-button.outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: white;
    box-shadow: none;
    margin-left: 0;
    /* Spacing handled by gap in parent */
}

.cta-button.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    /* Safety for mobile */
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    /* Dark overlay for readability */
    background-color: rgba(5, 5, 5, 0.95);
}

.about-content {
    max-width: 1000px;
    /* Increased max-width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
    /* Align text to left */
}

.about-image {
    width: 375px;
    aspect-ratio: 4/5;
    height: auto;
    /* Let aspect-ratio define height */
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #FFFFFF;
    /* Pure white border */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    /* Subtle glow effect */
    flex-shrink: 0;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

.about-text strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Portfolio Section */
.portfolio-section {
    padding: 8rem 5%;
    /* Darker portfolio density */
    background-color: rgba(15, 15, 15, 0.9);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 600px) {
    .portfolio-section {
        padding: 4rem 20px;
        /* Increase side padding to reduce grid width */
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        /* Slightly tighter gap */
    }
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #222;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform var(--transition-speed);
}

/* Removed overlay styles as there is no text/overlay content anymore */
.portfolio-item .overlay {
    display: none;
}

.portfolio-item:hover {
    transform: scale(1.05);
    /* Make bigger */
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-item h3 {
    display: none;
}

/* Posters Section */
.posters-section {
    padding: 8rem 5%;
    background-color: rgba(5, 5, 5, 0.98);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.posters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.poster-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #111;
    aspect-ratio: 3/4;
    /* Adjusted to be slightly wider */
    cursor: pointer;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poster-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.poster-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .posters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .posters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 5%;
    /* Monochrome gradient */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
}

.pricing-section .section-title {
    margin-bottom: 2rem;
    /* Reduced to make room for selector */
}

.currency-selector-container {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.currency-selector-container label {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.currency-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    appearance: none;
    /* Remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.currency-select:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.currency-select option {
    background-color: #0A0A0A;
    color: white;
}

.pricing-grid {
    display: grid;
    /* Custom layout for 4 items: First one smaller, next 3 equal */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    /* Increased max-width to fit 4 in a row */
    margin: 0 auto;
    /* Vertically center items */
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: 300px 1fr 1fr 1fr;
    }
}

.pricing-card {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
    background: linear-gradient(145deg, #1A1A1A, #050505);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.pricing-card.small-pack {
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    align-self: center;
    width: 300px;
    /* Specific size as requested */
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    justify-content: center;
}

.pricing-card.small-pack:hover {
    transform: translateY(-5px);
}

/* Font size overrides removed to match other cards */
.pricing-card.small-pack .price-container {
    margin-bottom: 1rem;
}

.pricing-card.small-pack .features-list {
    margin-bottom: 1rem;
}

.pricing-card.small-pack .cta-button {
    padding: 0.8rem 1.5rem;
    /* Kept padding adjustment for container fit */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.price-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    padding: 8rem 5%;
    /* Monochrome gradient back to dark */
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.95), rgba(0, 0, 0, 0.98));
    text-align: center;
    position: relative;
}

.contact-section .section-title {
    left: auto;
    transform: none;
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.whatsapp-button-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
}

.whatsapp-button-large svg {
    fill: currentColor;
    stroke: none;
}

.whatsapp-button-large:hover {
    background-color: var(--primary-color);
    color: #000000;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #050505;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: #000000;
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    /* Ensure svg inherits strict dimensions if needed, though viewport handles it */
    width: 24px;
    height: 24px;
}

/* Floating Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform var(--transition-speed);
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Animations Logic classes (triggered by JS) */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s forwards ease-out 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Header: Adjust logo to left to prevent overlap on smaller screens */
@media screen and (max-width: 1200px) {
    .navbar {
        justify-content: space-between;
    }

    .logo {
        position: static;
        transform: none;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {

    /* Revert logo to center for mobile */
    .navbar {
        justify-content: flex-end;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .pricing-grid {
        gap: 5rem;
        /* Significantly increased space between cards on mobile */
    }

    .pricing-card.small-pack {
        width: 100%;
        /* Make it responsive */
        max-width: 300px;
        /* Keep max width */
        aspect-ratio: auto;
        /* Allow height to grow if needed */
        height: auto;
        /* Allow height to grow */
        padding: 1.5rem 1rem;
        /* Slightly reduced side padding */
    }

    .pricing-card.small-pack h3 {
        font-size: 1.5rem;
        /* Reduce font size for mobile */
    }

    .about-image {
        width: 250px;
        /* Smaller image for mobile */
        max-width: 80%;
    }

    .nav-links {
        display: none;
        /* Mobile menu implementation usually requires JS toggle, kept simple for now */
    }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 5rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 2rem 0;
    }

    .nav-active {
        transform: translateX(0%);
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    /* Scale animation for content */
    transform: scale(0.8);
    transition: transform var(--transition-speed);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

/* Style for the image inside lightbox */
.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    transition: color var(--transition-speed);
}


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

/* Welcome Popup Styles */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    /* Higher than lightbox */
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
    backdrop-filter: blur(5px);
}

.welcome-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #1a1a1a;
    padding: 2.5rem;
    /* Reduced padding */
    border-radius: 20px;
    text-align: center;
    position: relative;
    max-width: 550px;
    /* Increased width */
    width: 95%;
    /* Use more space on mobile */
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform var(--transition-speed);
}

.welcome-popup.active .popup-content {
    transform: translateY(0);
}

.popup-content h2 {
    font-size: 2rem;
    /* Slightly smaller font */
    margin-bottom: 1rem;
    color: white;
}

.popup-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.popup-content .popup-btn {
    width: 100%;
    justify-content: center;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color var(--transition-speed);
}

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

/* Cursor Follower Effect */
.cursor-follower {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    /* Above everything */
    mix-blend-mode: difference;
    /* Inverts colors beneath it */
    transition: opacity 0.3s ease;
    will-change: transform;
    opacity: 0;
}

.cursor-follower.active {
    opacity: 1;
}

@media (pointer: coarse) {
    .cursor-follower {
        display: none;
        /* Hide on touch devices */
    }
}

/* Ambient Background Orbs */
#animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    background: #FFFFFF;
    pointer-events: none;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    top: -10%;
    left: -10%;
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    bottom: -10%;
    right: -10%;
    animation: floatOrb 30s infinite alternate-reverse ease-in-out;
    opacity: 0.03;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    top: 40%;
    left: 50%;
    animation: floatOrb 20s infinite alternate ease-in-out;
    opacity: 0.02;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10vw, 5vh) scale(1.1);
    }
}