/* ТОЧНАЯ КОПИЯ repeatlab.ru */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #0a0a0a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.l-layout { position: relative; min-height: 100vh; }

/* Header */
.l-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.header__logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    text-decoration: none;
}

.header-pro-link {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 1rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(0,255,136,0.4);
    border-radius: 6px;
    transition: all 0.2s;
}
.header-pro-link:hover {
    color: #00ff88;
    border-color: #00ff88;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    order: -1;
    position: fixed;
    left: 0.5rem;
    top: 5rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #00ff88;
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 5rem 2rem;
    transition: left 0.3s;
    border-right: 1px solid rgba(0, 255, 136, 0.3);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2rem;
    color: #00ff88;
    cursor: pointer;
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: #00ff88;
    padding-left: 10px;
}

.b-menu-top {
    display: flex;
    gap: 2.5rem;
}

.b-menu-top a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.b-menu-top a:hover { color: #00ff88; }

.theme-toggle {
    background: rgba(0,255,136,0.2);
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1002;
    min-width: 50px;
    text-align: center;
}

.theme-toggle:hover {
    background: rgba(0,255,136,0.3);
    transform: scale(1.1);
}

body.light-theme {
    background: #ffffff;
    color: #1a1a1a;
}

body.light-theme .l-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 255, 136, 0.2);
}

body.light-theme .header__logo a {
    color: #2196F3;
}

body.light-theme .b-menu-top a {
    color: #1a1a1a;
}

body.light-theme .b-menu-top a:hover {
    color: #2196F3;
}

body.light-theme .burger-menu span {
    background: #2196F3;
}

body.light-theme .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-right-color: rgba(0, 255, 136, 0.2);
}

body.light-theme .mobile-menu a {
    color: #1a1a1a;
    border-bottom-color: rgba(0, 255, 136, 0.1);
}

body.light-theme .mobile-menu a:hover {
    color: #2196F3;
}

body.light-theme .mobile-menu-close {
    color: #2196F3;
}

body.light-theme .section {
    background: #f5f5f5;
}

body.light-theme .section--gray {
    background: #ffffff;
}

body.light-theme .section-title {
    color: #2196F3;
}

body.light-theme .card,
body.light-theme .project-card {
    background: rgba(33, 150, 243, 0.05);
    border-color: rgba(33, 150, 243, 0.2);
}

body.light-theme .card h3,
body.light-theme .project-card h3 {
    color: #2196F3;
}

body.light-theme .card p,
body.light-theme .project-card p {
    color: #555;
}

body.light-theme .about-text p {
    color: #333;
}

body.light-theme .circle-center {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
    border-color: #2196F3;
    color: #2196F3;
}

body.light-theme .circle-item {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(33, 150, 243, 0.2);
}

body.light-theme .circle-item:hover {
    border-color: #2196F3;
}

body.light-theme .circle-item p {
    color: #555;
}

body.light-theme .btn {
    background: #2196F3;
    border-color: #2196F3;
    color: #fff;
}

body.light-theme .btn:hover {
    background: transparent;
    color: #2196F3;
}

body.light-theme .theme-toggle {
    border-color: #2196F3;
    color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}

body.light-theme .theme-toggle:hover {
    background: rgba(33, 150, 243, 0.2);
}

body.light-theme .hero-content h1 {
    color: #2196F3;
}

body.light-theme .hero-content .subtitle {
    color: #1a1a1a;
}

body.light-theme .hero-content .description {
    color: #555;
}

body.light-theme .card {
    background: rgba(33, 150, 243, 0.05);
    border-color: rgba(33, 150, 243, 0.2);
}

body.light-theme .card h3 {
    color: #2196F3;
}

body.light-theme .card p {
    color: #555;
}

body.light-theme .contact-section {
    background: #f5f5f5;
}

/* Main */
.l-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 1;
}

.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/desktop invest.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-bg {
        background-image: url('../assets/images/hero imajes Mobile.jpg');
    }
}

/* SVG Animations */
.hero-svgs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.svg-item {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
}

.svg-item--1 { top: 10%; right: 10%; animation: float1 8s ease-in-out infinite; width: 200px; height: 200px; }
.svg-item--2 { top: 30%; right: 25%; animation: float2 10s ease-in-out infinite; width: 120px; height: 120px; }
.svg-item--3 { bottom: 20%; right: 15%; animation: float3 12s ease-in-out infinite; width: 180px; height: 180px; }
.svg-item--4 { top: 50%; right: 5%; animation: float4 9s ease-in-out infinite; width: 100px; height: 100px; }
.svg-item--5 { bottom: 10%; right: 30%; animation: float5 11s ease-in-out infinite; width: 140px; height: 140px; }

@keyframes float1 { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; } 50% { transform: translate(-20px, -30px) rotate(5deg); opacity: 0.5; } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; } 50% { transform: translate(30px, -20px) rotate(-5deg); opacity: 0.5; } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; } 50% { transform: translate(-25px, 25px) rotate(3deg); opacity: 0.5; } }
@keyframes float4 { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; } 50% { transform: translate(20px, 30px) rotate(-3deg); opacity: 0.5; } }
@keyframes float5 { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; } 50% { transform: translate(-30px, -25px) rotate(4deg); opacity: 0.5; } }

/* Hero Content */
.hero-content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    max-width: 800px;
    padding-left: 0;
}

.hero-content img {
    margin-left: 0 !important;
}

.hero-content h1 {
    font-size: 6rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 0.9;
}

.hero-content .subtitle {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-content .description {
    font-size: 1.4rem;
    color: #ccc;
    line-height: 1.7;
}

/* Animated Backgrounds */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0,255,136,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,107,53,0.08) 0%, transparent 50%);
    animation: bgMove 15s ease-in-out infinite;
}

@keyframes bgMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0,255,136,0.4) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255,107,53,0.3) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(76,175,80,0.2) 0%, transparent 40%);
    animation: particlesMove 8s ease-in-out infinite;
}

@keyframes particlesMove {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.3) rotate(10deg); opacity: 1; }
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0,255,136,0.3) 0%, transparent 40%, rgba(255,107,53,0.3) 100%),
        radial-gradient(ellipse at 30% 30%, rgba(156,39,176,0.25) 0%, transparent 50%);
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.7; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(5deg) scale(1.1); }
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0,255,136,0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(33,150,243,0.2) 0%, transparent 50%);
    animation: waveMove 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes waveMove {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0,255,136,0.4) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255,107,53,0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(76,175,80,0.25) 0%, transparent 40%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.15) rotate(3deg); }
}

/* Sections */
.section {
    padding: 8rem 2rem;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.section--gray {
    background: #0a0a0a;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 600;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #ddd;
}

/* Circle */
.circle-diagram {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05));
    border: 3px solid #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.circle-item {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    min-width: 200px;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.circle-item:hover {
    transform: scale(1.15) translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.circle-item span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.8rem;
}

.circle-item p {
    font-size: 1rem;
    color: #ddd;
}

.circle-item--1 { top: -20px; left: 50%; transform: translateX(-50%); }
.circle-item--2 { top: 20%; left: -30px; }
.circle-item--3 { top: 20%; right: -30px; }
.circle-item--4 { bottom: 20%; left: -30px; }
.circle-item--5 { bottom: 20%; right: -30px; }
.circle-item--6 { bottom: -20px; left: 50%; transform: translateX(-50%); }

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s;
}

.card:hover {
    transform: translateY(-15px);
    border-color: #00ff88;
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.5);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.6rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.card p {
    color: #ccc;
    line-height: 1.7;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.3s;
}

.project-card--orange::before { background: linear-gradient(135deg, #FF9800, #F57C00); }
.project-card--pink::before { background: linear-gradient(135deg, #E91E63, #C2185B); }
.project-card--blue::before { background: linear-gradient(135deg, #2196F3, #1976D2); }
.project-card--red::before { background: linear-gradient(135deg, #FF5722, #E64A19); }
.project-card--purple::before { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.project-card--green::before { background: linear-gradient(135deg, #4CAF50, #388E3C); }
.project-card--cyan::before { background: linear-gradient(135deg, #00BCD4, #0097A7); }
.project-card--yellow::before { background: linear-gradient(135deg, #FFC107, #FF9800); }
.project-card--magenta::before { background: linear-gradient(135deg, #E91E63, #F06292); }

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
}

.project-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.project-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88, #00d470);
    color: #fff;
}

.project-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.project-card h3 {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
}

.project-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.project-tags span {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    font-size: 0.8rem;
    color: #00ff88;
}

/* Contact */
.contact-section {
    text-align: center;
    padding: 8rem 2rem;
    background: #0f0f0f;
}

.contact-section h2 {
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 2rem;
}

.contact-section p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    background: #00ff88;
    color: #fff;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 2px solid #00ff88;
}

.btn:hover {
    background: transparent;
    color: #00ff88;
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .about-grid { grid-template-columns: 1fr; }
    .circle-diagram { width: 500px; height: 500px; }
}

[id] { scroll-margin-top: 100px; } @media (max-width: 768px) {
    .header__inner { padding: 1rem; }
    .burger-menu { display: flex !important; }
    .b-menu-top { display: none; }
    .hero-content { left: 3%; right: 3%; max-width: 94%; }
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        color: #33ff99 !important;
        text-shadow: 0 0 12px rgba(0, 255, 136, 0.9),
                     0 0 24px rgba(0, 255, 136, 0.6),
                     0 2px 4px rgba(0, 0, 0, 0.9),
                     0 0 1px #000 !important;
    }
    .hero-content .word {
        color: #33ff99 !important;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.8),
                     0 0 20px rgba(0, 255, 136, 0.5),
                     0 2px 4px rgba(0, 0, 0, 0.9),
                     0 0 1px #000 !important;
    }
    .hero-content .subtitle {
        font-size: 1rem;
        color: #fff !important;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.8),
                     0 2px 4px rgba(0, 0, 0, 0.9) !important;
    }
    .hero-content .description {
        font-size: 0.9rem;
        color: #e0e0e0 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9) !important;
    }
    .section { padding: 4rem 1rem; }
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        color: #33ff99 !important;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.6),
                     0 2px 4px rgba(0, 0, 0, 0.9) !important;
    }
    .circle-diagram { width: 100%; max-width: 350px; height: 350px; }
    .circle-center { width: 100px; height: 100px; font-size: 0.9rem; }
    .circle-item { min-width: 100px; padding: 0.8rem; font-size: 0.8rem; }
    .circle-item span { font-size: 1.8rem; margin-bottom: 0.3rem; }
    .circle-item p { font-size: 0.75rem; }
    .cards-grid, .projects-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .card, .project-card { padding: 1.5rem; }
    .about-text p { font-size: 1rem; }
}

/* Investing Page */
.investing-hero {
    min-height: 400px;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, rgba(0,255,136,0.1) 0%, rgba(0,255,136,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.investing-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.investing-title {
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    font-weight: 700;
}

.investing-subtitle {
    font-size: 1.3rem;
    color: #ccc;
}

.project-invest-card {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
}

.project-invest-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.4);
}

.project-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.6rem;
    color: #00ff88;
    margin-bottom: 0.8rem;
}

.project-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.invest-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-box {
    flex: 1;
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.stat-value {
    font-size: 1.8rem;
    color: #00ff88;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.chart-item {
    text-align: center;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(180deg, #00ff88 0%, #00d470 100%);
    border-radius: 10px 10px 0 0;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.chart-item:hover .chart-bar {
    background: linear-gradient(180deg, #33ff99 0%, #00ff88 100%);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.chart-value {
    font-size: 1.2rem;
    color: #00ff88;
    font-weight: 700;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.word {
    color: #00ff88;
    margin-bottom: 0.5rem;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 0.8s steps(50, end) forwards;
    display: block;
}

.hero-content h1.word {
    animation-delay: 0s;
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-content .word:nth-of-type(2) {
    animation-delay: 1s;
    font-size: 2rem;
}

.hero-content .word:nth-of-type(3) {
    animation-delay: 2s;
    font-size: 1.5rem;
}

.hero-content .word:nth-of-type(4) {
    animation-delay: 3s;
    font-size: 1.5rem;
}

.hero-content .word:nth-of-type(5) {
    animation-delay: 4s;
    font-size: 1.5rem;
}
