/* Custom Font Import */
@font-face {
    font-family: 'KBDottyDot';
    src: url('assets/fonts/KBDottyDot.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'KBDottyDot', monospace;
    background-color: #0A0F1C;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Typography */
h1, h2, h3, p, span, div, a, button, input, textarea, label {
    font-family: 'KBDottyDot', monospace;
    font-weight: normal;
    letter-spacing: 0.02em;
}

/* Hide cursor on all elements */
*, *::before, *::after {
    cursor: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Navigation Sidebar */
.right-navbar {
    position: fixed;
    top: 20%;
    left: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 25px;
    padding: 1.5rem 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.1);
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(30, 144, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-item:hover {
    transform: scale(1.1);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.3), rgba(30, 144, 255, 0.2));
    border-color: rgba(0, 191, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.nav-item.active::before {
    opacity: 1;
}

.nav-item img {
    width: 36px;
    height: 36px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-item:hover img {
    filter: brightness(1.5) drop-shadow(0 0 5px rgba(0, 191, 255, 0.5));
}

.nav-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 15, 28, 0.95);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 191, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-tooltip::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: rgba(10, 15, 28, 0.95);
}

.nav-item:hover .nav-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(10px);
}

/* Social Media Section */
.nav-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0.75rem;
    background: rgba(10, 15, 28, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.1);
}

.nav-social-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(30, 144, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.nav-social-item:hover::before {
    opacity: 1;
}

.nav-social-item:hover {
    transform: scale(1.1);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.nav-social-item img {
    width: 28px;
    height: 28px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-social-item:hover img {
    filter: brightness(1.5) drop-shadow(0 0 5px rgba(0, 191, 255, 0.5));
}

.nav-social-item .nav-tooltip {
    left: 60px;
}

.nav-social-item:hover .nav-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(10px);
}

/* Responsive Design for Left Navbar */
@media (max-width: 1024px) {
    .right-navbar {
        left: 1rem;
    }
    
    .nav-item {
        width: 45px;
        height: 45px;
    }
    
    .nav-item img {
        width: 22px;
        height: 22px;
    }
    
    .nav-social-item {
        width: 36px;
        height: 36px;
    }
    
    .nav-social-item img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .right-navbar {
        left: 0.5rem;
        gap: 1.5rem;
    }
    
    .nav-items {
        padding: 1rem 0.5rem;
        gap: 0.75rem;
    }
    
    .nav-item {
        width: 40px;
        height: 40px;
    }
    
    .nav-item img {
        width: 20px;
        height: 20px;
    }
    
    .nav-social {
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
    }
    
    .nav-social-item {
        width: 32px;
        height: 32px;
    }
    
    .nav-social-item img {
        width: 20px;
        height: 20px;
    }
    
    /* Hide tooltips on mobile */
    .nav-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .right-navbar {
        left: 0.25rem;
    }
    
    .nav-items {
        padding: 0.75rem 0.4rem;
    }
    
    .nav-item {
        width: 36px;
        height: 36px;
    }
    
    .nav-item img {
        width: 18px;
        height: 18px;
    }
    
    .nav-social {
        padding: 0.5rem 0.4rem;
    }
    
    .nav-social-item {
        width: 28px;
        height: 28px;
    }
    
    .nav-social-item img {
        width: 18px;
        height: 18px;
    }
}

/* Animation for navbar appearance */
.right-navbar {
    animation: slideInLeft 1s ease-out 1.5s both;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Pulse animation for active item */
.nav-item.active {
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0F1C 0%, #1a1f2e 50%, #0A0F1C 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: 1;
}

.network-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.05) 0%, transparent 70%);
    animation: networkPulse 8s ease-in-out infinite;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: heroFadeIn 2s ease-out;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.logo-container {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #00BFFF 50%, #1E90FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6)); }
}

.hero-slogan {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: sloganFade 2s ease-out 0.5s both;
}

@keyframes sloganFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 0.9; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: buttonsFade 2s ease-out 1s both;
}

@keyframes buttonsFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.contract-address {
    font-family: 'KBDottyDot', monospace;
    font-size: 0.9rem;
    color: rgba(0, 191, 255, 0.8);
    text-align: center;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
    animation: contractFade 2s ease-out 1.2s both;
}

@keyframes contractFade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0.8; transform: translateY(0); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    color: #FFFFFF;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #00BFFF;
}

.btn-secondary:hover {
    background: rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #00BFFF);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #00BFFF;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #0A0F1C 0%, #1a1f2e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-visual {
    text-align: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.network-visual {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: rotate 20s linear infinite;
}

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

/* Tokenomics Section */
.tokenomics-section {
    background: #0A0F1C;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tokenomics-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(30, 144, 255, 0.05) 100%);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3));
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00BFFF;
}

.card-value {
    font-family: 'KBDottyDot', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    opacity: 0.8;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #0A0F1C 100%);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    animation: stepFadeIn 1s ease-out;
}

@keyframes stepFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(30, 144, 255, 0.1));
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.4);
}

.step-icon img {
    width: 70px;
    height: 70px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00BFFF;
}

.step-description {
    opacity: 0.9;
    line-height: 1.6;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'KBDottyDot', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    display: none;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00BFFF, transparent);
    position: relative;
    margin-top: 120px;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #00BFFF;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Community Section */
.community-section {
    background: #0A0F1C;
    text-align: center;
}

.community-description {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(0, 191, 255, 0.2);
    width: 200px;
    min-width: 200px;
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.4);
}

.social-link img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3));
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #0A0F1C 100%);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 30px;
}

.footer-logo span {
    font-family: 'KBDottyDot', monospace;
    font-size: 1.2rem;
    color: #00BFFF;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(0, 191, 255, 0.2);
    transform: scale(1.1);
}

.footer-social img {
    width: 28px;
    height: 28px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        width: 2px;
        height: 50px;
        background: linear-gradient(to bottom, transparent, #00BFFF, transparent);
    }
    
    .step-connector::before {
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid #00BFFF;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 400px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .tokenomics-card {
        padding: 2rem;
    }
    
    .card-value {
        font-size: 2rem;
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

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

