        :root {
            --primary-color: #6366f1;
            --secondary-color: #ec4899;
            --tertiary-color: #8b5cf6;
            --accent-color: #06b6d4;
            --text-color: #f8fafc;
            --text-color-light: #cbd5e1;
            --bg-color: #0f172a;
            --bg-color-light: #1e293b;
            --bg-color-dark: #020617;
            --gradient-1: linear-gradient(135deg, #6366f1, #ec4899);
            --gradient-2: linear-gradient(135deg, #8b5cf6, #06b6d4);
            --gradient-3: linear-gradient(135deg, #ec4899, #8b5cf6);
            --card-bg: rgba(30, 41, 59, 0.7);
            --font-main: 'Noto Sans TC', 'Arial', sans-serif;
            --shadow-1: 0 4px 20px rgba(0, 0, 0, 0.2);
            --shadow-2: 0 8px 30px rgba(0, 0, 0, 0.3);
            --blur-effect: blur(10px);
            --nav-height: 80px;
            --header-padding: calc(var(--nav-height) + 2rem);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #6366f1;
            --secondary-color: #ec4899;
            --tertiary-color: #8b5cf6;
            --accent-color: #06b6d4;
            --text-color: #f8fafc;
            --text-color-light: #cbd5e1;
            --bg-color: #0f172a;
            --bg-color-light: #1e293b;
            --bg-color-dark: #020617;
            --gradient-1: linear-gradient(135deg, #6366f1, #ec4899);
            --gradient-2: linear-gradient(135deg, #8b5cf6, #06b6d4);
            --gradient-3: linear-gradient(135deg, #ec4899, #8b5cf6);
            --card-bg: rgba(30, 41, 59, 0.7);
            --font-main: 'Noto Sans TC', 'Arial', sans-serif;
            --shadow-1: 0 4px 20px rgba(0, 0, 0, 0.2);
            --shadow-2: 0 8px 30px rgba(0, 0, 0, 0.3);
            --blur-effect: blur(10px);
            --nav-height: 80px;
            --header-padding: calc(var(--nav-height) + 2rem);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
        }

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

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            padding-top: var(--header-padding);
            position: relative;
        }

        .hero-content {
            text-align: center;
            position: relative;
            padding: 4rem 3rem;
            animation: fadeIn 1s ease-out;
        }

        .main-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1rem;
        }

        .year-badge {
            background: var(--gradient-1);
            color: var(--text-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            display: inline-block;
            transform: rotate(-5deg);
            animation: float 3s ease-in-out infinite;
            box-shadow: var(--shadow-1);
        }

        .sub-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            background: var(--gradient-2);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
        }

        .btn-3d {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-color);
            background: var(--gradient-1);
            border-radius: 50px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow-1);
        }

        .btn-3d:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2);
        }

        .glass-container {
            background: rgba(26, 0, 51, 0.4);
            backdrop-filter: var(--blur-effect);
            -webkit-backdrop-filter: var(--blur-effect);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: var(--shadow-1);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        @keyframes float {

            0%,
            100% {
                transform: rotate(-5deg) translateY(0);
            }

            50% {
                transform: rotate(-5deg) translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 3rem 1.5rem;
            }

            .btn-3d {
                padding: 0.8rem 2rem;
                font-size: 1.1rem;
            }
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

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

        .hero {
            padding-top: var(--header-padding);
            min-height: 100vh;
        }

        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .glass-container {
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: var(--blur-effect);
            -webkit-backdrop-filter: var(--blur-effect);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 3rem;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            background-clip: text;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            background: var(--gradient-3);
            -webkit-background-clip: text;
            background-clip: text;
        }

        p {
            margin-bottom: 1rem;
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: var(--text-color-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            height: var(--nav-height);

            background: rgba(26, 0, 51, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: var(--blur-effect);
            border-bottom: 1px solid rgba(255, 51, 102, 0.2);
            padding: 0.5rem 0;
            transform: translateY(0);
            transition: transform 0.3s ease;

        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            color: var(--text-color-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-link:hover {
            color: var(--text-color);
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--bg-color);
                padding: 1rem 0;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .nav-menu.active {
                display: flex;
            }
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-1);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 1001;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--gradient-1);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-1);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .btn span {
            position: relative;
            z-index: 1;
        }

        .schedule-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .schedule-session {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: var(--blur-effect);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .schedule-session:hover {
            transform: translateY(-5px);
        }

        .schedule-time {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .schedule-time i {
            font-size: 1.2rem;
        }

        .schedule-item {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .schedule-item:last-child {
            border-bottom: none;
        }

        .schedule-item h4 {
            color: var(--text-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .competition-details {
            background: var(--bg-color-light);
            border-radius: 20px;
            padding: 2rem;
            margin-top: 3rem;
        }

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

        .criteria-item {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
        }

        .criteria-item h4 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .prize-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem 0;
            position: relative;
            overflow: hidden;
        }

        .prize-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0.1;
            transition: opacity 0.3s ease;
        }

        .prize-card:hover::before {
            opacity: 0.2;
        }

        .prize-title {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            margin: 2rem 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

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

        .contact-item {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .contact-item i {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .registration-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            background: var(--bg-color-dark);
            color: var(--text-color);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: var(--gradient-1);
            transform: translateX(-50%);
        }

        .timeline-item {
            margin-bottom: 2rem;
            position: relative;
            width: calc(50% - 30px);
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-item:nth-child(even) {
            margin-left: auto;
            transform: translateX(50px);
        }

        .timeline-content {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 15px;
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--gradient-1);
            border-radius: 50%;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -40px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -40px;
        }

        @keyframes float {

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

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

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

            50% {
                transform: scale(1.05);
            }

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

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        @media (max-width: 992px) {
            .timeline-item {
                width: calc(100% - 30px);
                margin-left: 30px;
            }

            .timeline-item:nth-child(even) {
                margin-left: 30px;
            }

            .timeline::before {
                left: 0;
            }

            .timeline-item:nth-child(odd) .timeline-content::before {
                right: auto;
                left: -40px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .section {
                padding: 60px 0;
            }

            .criteria-grid {
                grid-template-columns: 1fr;
            }
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .registration-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .deadline-banner {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
            padding: 1.5rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .deadline-icon {
            font-size: 2rem;
        }

        .deadline-text {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .deadline-text span {
            color: var(--text-color-light);
        }

        .deadline-text strong {
            font-size: 1.2rem;
            color: var(--text-color);
        }

        .requirements-container {
            display: flex;
            justify-content: center;
            gap: 3rem;
            position: relative;
        }

        .divider {
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
        }

        .requirements-section {
            flex: 1;
            max-width: 300px;
        }

        .requirements-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .requirements-list {
            list-style: none;
            counter-reset: requirement-counter;
            text-align: left;
        }

        .requirement-item {
            counter-increment: requirement-counter;
            padding: 1rem 0;
            display: flex;
            align-items: center;
            color: var(--text-color-light);
        }

        .requirement-item::before {
            content: counter(requirement-counter, decimal-leading-zero);
            font-weight: 600;
            color: var(--accent-color);
            margin-right: 1rem;
            font-size: 1.1rem;
        }

        .notice-banner {
            background: rgba(255, 255, 255, 0.03);
            padding: 1rem 2rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .notice-icon {
            font-size: 1.2rem;
            animation: pulse 2s infinite;
        }

        .cta-container {
            margin-top: 1rem;
        }

        .btn-3d {
            padding: 1rem 3rem;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .registration-card {
                padding: 2rem 1.5rem;
            }

            .requirements-container {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            .divider {
                width: 80%;
                height: 1px;
                background: linear-gradient(to right, transparent, var(--accent-color), transparent);
            }

            .requirements-section {
                max-width: 100%;
            }

            .notice-banner {
                flex-direction: column;
                padding: 1rem;
            }
        }

        @keyframes pulse {

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

            50% {
                transform: scale(1.2);
            }
        }

        .overview-section {
            padding: 6rem 0;
        }

        .overview-card {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem;
            position: relative;
        }

        .overview-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .header-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
        }

        .header-line {
            width: 60px;
            height: 3px;
            background: var(--gradient-1);
            margin: 0 auto;
            border-radius: 2px;
        }

        .overview-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .content-block {
            flex: 1;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .content-block:hover {
            transform: translateY(-5px);
        }

        .content-text {
            line-height: 1.8;
            color: var(--text-color-light);
            text-align: justify;
        }

        .content-divider {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding: 1rem 0;
        }

        .divider-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0.6;
        }

        .key-points {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .point {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50px;
            transition: transform 0.3s ease;
        }

        .point:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.05);
        }

        .point-icon {
            font-size: 1.2rem;
        }

        .point-text {
            color: var(--text-color-light);
            font-size: 0.9rem;
        }

        @keyframes float {

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

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

        @media (max-width: 768px) {
            .overview-card {
                padding: 2rem 1.5rem;
            }

            .key-points {
                flex-direction: column;
                align-items: center;
            }

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

        .hero-logo {
            position: relative;
            height: 180px;
            margin-bottom: 2rem;
        }

        .logo-container {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .logo-main {
            font-size: 5rem;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
        }

        .logo-shadow {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 10px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
            border-radius: 50%;
            animation: shadow-pulse 0.8s ease-in-out infinite alternate;
        }

        .orbital-icons {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
        }

        .orbit {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border: 2px dashed rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .orbit-1 {
            width: 150px;
            height: 150px;
            animation: rotate 12s linear infinite;
        }

        .orbit-2 {
            width: 200px;
            height: 200px;
            animation: rotate-reverse 15s linear infinite;
        }

        .orbital-icon {
            position: absolute;
            font-size: 1.5rem;
            transform-origin: center;
            animation: self-rotate 5s linear infinite;
        }

        .orbit-1 .orbital-icon:nth-child(1) {
            top: -10px;
            left: 45%;
        }

        .orbit-1 .orbital-icon:nth-child(2) {
            bottom: -10px;
            left: 45%;
        }

        .orbit-1 .orbital-icon:nth-child(3) {
            left: -10px;
            top: 45%;
        }

        .orbit-2 .orbital-icon:nth-child(1) {
            top: 0;
            left: 45%;
        }

        .orbit-2 .orbital-icon:nth-child(2) {
            right: 0;
            top: 45%;
        }

        .orbit-2 .orbital-icon:nth-child(3) {
            bottom: 0;
            left: 45%;
        }

        .orbit-2 .orbital-icon:nth-child(4) {
            left: 0;
            top: 45%;
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .float-icon {
            position: absolute;
            font-size: 1.8rem;
            animation: float-up 3s ease-in-out infinite;
            animation-delay: var(--delay);
        }

        .float-icon:nth-child(1) {
            left: 15%;
            top: 20%;
        }

        .float-icon:nth-child(2) {
            right: 15%;
            top: 30%;
        }

        .float-icon:nth-child(3) {
            left: 25%;
            bottom: 20%;
        }

        .float-icon:nth-child(4) {
            right: 25%;
            bottom: 30%;
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes rotate-reverse {
            from {
                transform: translate(-50%, -50%) rotate(360deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(0deg);
            }
        }

        @keyframes self-rotate {
            from {
                transform: rotate(360deg);
            }

            to {
                transform: rotate(0deg);
            }
        }

        @keyframes float-up {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

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

        .bounce {
            animation: bounce 0.8s ease-in-out infinite alternate;
        }

        @keyframes bounce {
            from {
                transform: translate(-50%, -50%) scale(1);
            }

            to {
                transform: translate(-50%, -50%) scale(1.1) translateY(-10px);
            }
        }

        @keyframes shadow-pulse {
            from {
                transform: translateX(-50%) scale(1);
                opacity: 0.4;
            }

            to {
                transform: translateX(-50%) scale(0.8);
                opacity: 0.2;
            }
        }

        @media (max-width: 768px) {
            .hero-logo {
                height: 150px;
            }

            .logo-main {
                font-size: 4rem;
            }

            .orbital-icons {
                width: 160px;
                height: 160px;
            }

            .orbit-1 {
                width: 120px;
                height: 120px;
            }

            .orbit-2 {
                width: 160px;
                height: 160px;
            }

            .orbital-icon {
                font-size: 1.2rem;
            }

            .float-icon {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-logo {
                height: 120px;
            }

            .logo-main {
                font-size: 3.5rem;
            }

            .orbital-icons {
                width: 140px;
                height: 140px;
            }

            .orbit-1 {
                width: 100px;
                height: 100px;
            }

            .orbit-2 {
                width: 140px;
                height: 140px;
            }

            .float-icon:nth-child(1) {
                left: 5%;
            }

            .float-icon:nth-child(2) {
                right: 5%;
            }

            .float-icon:nth-child(3) {
                left: 10%;
            }

            .float-icon:nth-child(4) {
                right: 10%;
            }
        }