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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #111827 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

html {
    background: #0f0f0f;
    width: 100%;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f0f0f 0%, #1f2937 50%, #111827 100%);
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #00FF84, #00e676);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 40%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Celebration Animations */
.pulsing-stat {
    animation: pulse-glow 2s ease-in-out infinite;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite, gradient-shift 3s ease infinite;
}

.celebration-badge {
    position: relative;
    animation: bounce-celebration 2s ease-in-out infinite;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    backdrop-filter: blur(10px);
}

.celebration-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 15px;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(78, 205, 196, 0.8);
    }
}

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

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: #00FF84;
    text-decoration: none;
}

.logo i {
    font-size: 2.5rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, #00FF84, #00e676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1rem;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00FF84;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.cta-primary {
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* YouTube Strategy Section */
.youtube-strategy {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.strategy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.strategy-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00FF84, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-header p {
    color: #9ca3af;
    font-size: 1.1rem;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00FF84, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #00FF84;
    margin: 1rem 0;
}

.step-card h3 {
    margin: 1rem 0 0.5rem 0;
    color: white;
    font-size: 1.5rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

.step-status {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 132, 0.1);
    border-radius: 20px;
    color: #00FF84;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Features Preview */
.features-preview {
    margin-bottom: 4rem;
    width: 100%;
    text-align: center;
}

.features-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

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

.feature-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00FF84;
    box-shadow: 0 10px 30px rgba(0, 255, 132, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00FF84, #00e676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #0f0f0f;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Focus Areas Section */
.focus-areas {
    margin: 4rem 0;
    text-align: center;
    width: 100%;
}

.focus-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.focus-areas p {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.focus-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.focus-item i {
    font-size: 2rem;
    color: #00FF84;
    margin-bottom: 1rem;
}

.focus-item span {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.interest-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.interest-fill {
    height: 100%;
    background: linear-gradient(90deg, #00FF84, #00cc6a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.focus-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 4rem;
    text-align: center;
    width: 100%;
}

.countdown-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.countdown-section p {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.time-unit {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 100px;
    text-align: center;
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00FF84;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Signup Section */
.signup-section {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.signup-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.signup-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.signup-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.input-group:focus-within {
    border-color: #00FF84;
    box-shadow: 0 0 0 3px rgba(0, 255, 132, 0.1);
}

.input-group.valid {
    border-color: #00FF84;
}

.input-group.invalid {
    border-color: #ff4444;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    width: 100%;
    min-width: 0;
}

.input-group input::placeholder {
    color: #6b7280;
}

.signup-btn {
    background: linear-gradient(135deg, #00FF84, #00e676);
    color: #0f0f0f;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    white-space: nowrap;
}

.signup-btn:hover {
    background: linear-gradient(135deg, #00e676, #00c965);
    transform: translateX(-2px);
}

.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.signup-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.benefit i {
    color: #00FF84;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.social-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-link:hover {
    background: #00FF84;
    color: #0f0f0f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 132, 0.3);
}

.youtube-primary {
    background: linear-gradient(135deg, #ff4444, #ff6b6b) !important;
    color: white !important;
    font-weight: 600;
}

.youtube-primary:hover {
    background: linear-gradient(135deg, #ff3333, #ff5555) !important;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
}

.social-cta {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 132, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 132, 0.2);
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    width: 100%;
    margin-top: auto;
}

/* Modal - Fixed for Mobile */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    box-sizing: border-box;
    margin: auto;
    position: relative;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00FF84, #00e676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #0f0f0f;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.modal-content p {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.modal-close {
    background: linear-gradient(135deg, #00FF84, #00e676);
    color: #0f0f0f;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.modal-close:hover {
    background: linear-gradient(135deg, #00e676, #00c965);
    transform: translateY(-2px);
}

.modal-youtube {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.modal-youtube:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    z-index: 10000;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    width: calc(100% - 40px);
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.notification.success {
    border-left: 4px solid #00FF84;
}

.notification.error {
    border-left: 4px solid #ff4444;
}

.notification.warning {
    border-left: 4px solid #ffa500;
}

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

.notification-message {
    flex-grow: 1;
    text-align: left;
}

.notification-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .strategy-header h2,
    .features-preview h2,
    .focus-areas h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 1.75rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .strategy-steps {
        grid-template-columns: 1fr;
    }
    
    .signup-benefits {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 1.5rem;
        max-height: 90vh;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat {
        min-width: 100px;
        padding: 0.5rem;
    }
    
    .countdown-timer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 0;
        padding: 1rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .signup-title {
        font-size: 1.5rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .features-preview h2,
    .focus-areas h2 {
        font-size: 1.75rem;
    }
    
    .feature-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 1rem;
    }
    
    .input-group input {
        background: rgba(31, 41, 55, 0.8);
        border: 1px solid rgba(75, 85, 99, 0.3);
        border-radius: 0.75rem;
        width: 100%;
    }
    
    .signup-btn {
        width: 100%;
        justify-content: center;
        border-radius: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 1.25rem;
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-close,
    .modal-youtube {
        width: 100%;
        min-width: 0;
    }
    
    /* Prevent zoom on input focus for iOS */
    input[type="email"] {
        font-size: 16px;
    }
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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