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

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

:root {
    --primary-color: #2193b0;
    --secondary-color: #6dd5ed;
    --accent-color: #ff6b6b;
    --dark-bg: #0a0e27;
    --light-text: #ffffff;
    --gray-text: #b8b8b8;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0e27;
    color: var(--light-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(33, 147, 176, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(109, 213, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #0a0e27 0%, #1a1d3a 50%, #2a2d4a 100%);
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle, rgba(109, 213, 237, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(33, 147, 176, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 107, 107, 0.1) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px, 250px 250px;
    background-position: 0 0, 60px 60px, 120px 120px;
    z-index: 0;
    animation: particlesFloat 50s linear infinite;
}

@keyframes particlesFloat {
    0% {
        background-position: 0 0, 60px 60px, 120px 120px;
    }
    100% {
        background-position: 0 -600px, 60px -540px, 120px -480px;
    }
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.container {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
}


/* Main Content */
.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbital Electron System - More realistic */
.orbital-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: none;
}

.orbit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: rgba(109, 213, 237, 0.15);
    border-right-color: rgba(109, 213, 237, 0.1);
    transform: translate(-50%, -50%);
}

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

.orbit-2 {
    width: 220px;
    height: 220px;
    animation: orbitRotate 18s linear infinite reverse;
}

.orbit-3 {
    width: 280px;
    height: 280px;
    animation: orbitRotate 24s linear infinite;
}

.electron {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #6dd5ed 40%, #2193b0);
    border-radius: 50%;
    box-shadow:
        0 0 8px rgba(109, 213, 237, 0.6),
        0 0 15px rgba(109, 213, 237, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.2),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: electronGlow 2s ease-in-out infinite;
}

/* Position electrons on each orbit */
.orbit-1 .electron-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-1 .electron-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.orbit-2 .electron-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.3s;
}

.orbit-2 .electron-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.9s;
}

.orbit-2 .electron-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.orbit-3 .electron-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.orbit-3 .electron-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1.2s;
}

.orbit-3 .electron-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.8s;
}

.orbit-3 .electron-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 0.7s;
}

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

@keyframes electronGlow {
    0%, 100% {
        opacity: 0.7;
        box-shadow:
            0 0 6px rgba(109, 213, 237, 0.5),
            0 0 12px rgba(109, 213, 237, 0.2),
            inset -2px -2px 4px rgba(0, 0, 0, 0.2),
            inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    }
    50% {
        opacity: 1;
        box-shadow:
            0 0 12px rgba(109, 213, 237, 0.8),
            0 0 24px rgba(109, 213, 237, 0.4),
            inset -2px -2px 4px rgba(0, 0, 0, 0.2),
            inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    }
}

.main-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    box-shadow:
        0 0 40px rgba(33, 147, 176, 0.4),
        0 0 80px rgba(109, 213, 237, 0.2);
    animation: pulse 3s ease-in-out infinite;
    border: 3px solid rgba(109, 213, 237, 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(33, 147, 176, 0.4),
            0 0 80px rgba(109, 213, 237, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 60px rgba(33, 147, 176, 0.6),
            0 0 120px rgba(109, 213, 237, 0.3);
        transform: scale(1.05);
    }
}

/* Chemical Rings Animation */
.chemical-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 220px;
    height: 220px;
    border-color: rgba(33, 147, 176, 0.3);
    animation: rotate 20s linear infinite;
}

.ring-2 {
    width: 250px;
    height: 250px;
    border-color: rgba(109, 213, 237, 0.2);
    animation: rotate 25s linear infinite reverse;
}

.ring-3 {
    width: 280px;
    height: 280px;
    border-color: rgba(255, 107, 107, 0.2);
    animation: rotate 30s linear infinite;
}

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

/* Atoms around logo */
.atoms {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.atom {
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    transform: rotate(var(--angle)) translateX(140px) translateY(-50%);
    box-shadow: 0 0 15px var(--secondary-color);
    animation: atomFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--angle) / 60deg * 0.5s);
}

@keyframes atomFloat {
    0%, 100% {
        transform: rotate(var(--angle)) translateX(140px) translateY(-50%) scale(1);
    }
    50% {
        transform: rotate(var(--angle)) translateX(140px) translateY(-50%) scale(1.3);
    }
}


.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 10;
    text-shadow:
        0 0 20px rgba(109, 213, 237, 0.6),
        0 0 40px rgba(33, 147, 176, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-part {
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

.highlight {
    animation-delay: 1s;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px var(--secondary-color));
    }
    50% {
        filter: drop-shadow(0 0 20px var(--secondary-color));
    }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    font-weight: 300;
    text-shadow:
        0 0 10px rgba(109, 213, 237, 0.2),
        0 0 20px rgba(109, 213, 237, 0.1);
    animation: subtitleGlow 4s ease-in-out infinite;
}

@keyframes subtitleGlow {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(109, 213, 237, 0.2),
            0 0 20px rgba(109, 213, 237, 0.1);
    }
    50% {
        text-shadow:
            0 0 15px rgba(109, 213, 237, 0.3),
            0 0 30px rgba(109, 213, 237, 0.15);
    }
}

/* Construction Message */
.construction-message {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.icon-wrapper {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.construction-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.description {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Modern Construction Section */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(109, 213, 237, 0.1);
    border: 1px solid rgba(109, 213, 237, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse-animation 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(109, 213, 237, 0.7);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(109, 213, 237, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(109, 213, 237, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(109, 213, 237, 0);
    }
}

.simple-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    position: relative;
    margin-bottom: 2rem;
    margin-top: 1rem;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(109, 213, 237, 0.8),
        0 0 20px rgba(109, 213, 237, 0.6),
        0 0 40px rgba(109, 213, 237, 0.4),
        0 0 80px rgba(33, 147, 176, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glowPulse 3s ease-in-out infinite;
}

.simple-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6dd5ed, #2193b0, #6dd5ed, transparent);
    background-size: 200% 100%;
    animation: lineSlide 3s linear infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(109, 213, 237, 0.8);
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(109, 213, 237, 0.8),
            0 0 20px rgba(109, 213, 237, 0.6),
            0 0 40px rgba(109, 213, 237, 0.4),
            0 0 80px rgba(33, 147, 176, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow:
            0 0 20px rgba(109, 213, 237, 1),
            0 0 30px rgba(109, 213, 237, 0.8),
            0 0 60px rgba(109, 213, 237, 0.6),
            0 0 100px rgba(33, 147, 176, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

@keyframes lineSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.simple-subtitle {
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 500px;
    margin: 1rem auto 0;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards, subtitleShimmer 5s ease-in-out infinite;
    font-weight: 300;
    text-shadow:
        0 0 8px rgba(109, 213, 237, 0.15),
        0 0 15px rgba(109, 213, 237, 0.08);
}

@keyframes subtitleShimmer {
    0%, 100% {
        opacity: 0.9;
        text-shadow:
            0 0 8px rgba(109, 213, 237, 0.15),
            0 0 15px rgba(109, 213, 237, 0.08);
    }
    50% {
        opacity: 1;
        text-shadow:
            0 0 12px rgba(109, 213, 237, 0.25),
            0 0 20px rgba(109, 213, 237, 0.12);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Background Slang Terms */
.background-slang {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-slang {
    position: absolute;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(109, 213, 237, 0.15);
    letter-spacing: 4px;
    opacity: 0;
    user-select: none;
    text-shadow: 0 0 10px rgba(109, 213, 237, 0.3);
}

.bg-slang::before {
    content: attr(data-text);
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(109, 213, 237, 0.1), rgba(33, 147, 176, 0.1));
    border: 2px solid rgba(109, 213, 237, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(109, 213, 237, 0.4);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(109, 213, 237, 0.2), rgba(33, 147, 176, 0.2));
}

.contact-link i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* Social Section */
.social-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.social-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

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

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 2.5rem;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
    box-shadow: 0 10px 30px rgba(230, 104, 60, 0.4);
}

.social-link.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.social-link.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.4);
}

/* Supported By Section */
.supported-by {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.supported-text {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reactiveforge-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(33, 147, 176, 0.1));
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.reactiveforge-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.reactiveforge-link:hover::before {
    left: 100%;
}

.reactiveforge-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(33, 147, 176, 0.2));
}

.rf-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.3));
    transition: all 0.3s ease;
}

.reactiveforge-link:hover .rf-logo {
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.6));
    transform: scale(1.05);
}

.rf-text {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.footer p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-text);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo-wrapper {
        width: 260px;
        height: 260px;
    }

    .main-logo {
        width: 160px;
        height: 160px;
    }

    /* Orbital electrons responsive */
    .orbit-1 {
        width: 130px;
        height: 130px;
    }

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

    .orbit-3 {
        width: 230px;
        height: 230px;
    }

    .electron {
        width: 8px;
        height: 8px;
    }

    .ring-1 {
        width: 180px;
        height: 180px;
    }

    .ring-2 {
        width: 210px;
        height: 210px;
    }

    .ring-3 {
        width: 240px;
        height: 240px;
    }

    .atom {
        transform: rotate(var(--angle)) translateX(120px) translateY(-50%);
    }

    .simple-title {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }

    .simple-subtitle {
        font-size: 1rem;
    }

    .construction-message {
        padding: 2rem 1.5rem;
    }

    .simple-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .bg-slang {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .construction-message {
        padding: 2rem 1.5rem;
    }

    .construction-message h2 {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }

    .social-link i {
        font-size: 2rem;
    }

    .reactiveforge-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .rf-logo {
        height: 28px;
    }

    .rf-text {
        font-size: 1rem;
    }
}

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

    .main-logo {
        width: 120px;
        height: 120px;
    }

    /* Orbital electrons mobile */
    .orbit-1 {
        width: 100px;
        height: 100px;
    }

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

    .orbit-3 {
        width: 180px;
        height: 180px;
    }

    .electron {
        width: 6px;
        height: 6px;
    }

    .ring-1 {
        width: 140px;
        height: 140px;
    }

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

    .ring-3 {
        width: 180px;
        height: 180px;
    }

    .atom {
        width: 12px;
        height: 12px;
        transform: rotate(var(--angle)) translateX(90px) translateY(-50%);
    }

    .reactor-container {
        width: 140px;
        height: 140px;
    }

    .reactor-container i {
        font-size: 3.5rem;
    }

    .processing-bars {
        gap: 5px;
    }

    .process-bar {
        width: 30px;
        height: 5px;
    }

    .construction-title {
        font-size: 1.8rem;
    }

    .construction-description {
        font-size: 1rem;
    }

    .progress-container {
        padding: 1rem;
    }

    .progress-info {
        font-size: 0.85rem;
    }

    .launch-badge {
        padding: 1rem 1.5rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }

    .launch-icon {
        font-size: 1.8rem;
    }

    .launch-label {
        font-size: 0.95rem;
    }

    .launch-date {
        font-size: 1.3rem;
    }

    .bg-slang {
        font-size: 2rem;
    }

    .contact-link {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

    .simple-title {
        font-size: 2rem;
        letter-spacing: 0.08em;
    }

    .icon-wrapper {
        font-size: 3rem;
    }

    .reactiveforge-link {
        font-size: 0.9rem;
    }
}
