
.block1 {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    padding: 0 5%;
    box-sizing: border-box;
}

.block1-content {
    max-width: 70%;
    margin-right: 10%;
    z-index: 2;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 180, 0.1);
    color: #00ffb4;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 180, 0.2);
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 24px 0;
    font-weight: 700;
}

.highlight {
    color: #00ffb4;
}

.description {
    font-size: 18px;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 90%;
}

.buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    background: #00ffb4;
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #555;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.stats {
    display: flex;
    gap: 50px;
}

.stats strong {
    font-size: 32px;
    color: #00ffb4;
}

.code-window.glass {
    width: 50%;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #00ffb4;

    background: rgba(20, 20, 30, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 0 20px rgba(0, 255, 180, 0.25),
    0 0 40px rgba(0, 255, 180, 0.15),
    inset 0 0 20px rgba(0, 255, 180, 0.1);
}

.window-header {
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.red {
    background: #ff5f57;
    box-shadow: 0 0 8px #ff5f57;
}

.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 8px #ffbd2e;
}

.green {
    background: #27c93f;
    box-shadow: 0 0 8px #27c93f;
}

.lang {
    color: #00ffb4;
    font-size: 14px;
}

code {
    display: block;
    padding: 20px;
    font-family: 'Consolas', monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #a0a0a0;
}

.kw {
    color: #ff7acb;
    text-shadow: 0 0 6px #ff7acb;
}


.fn {
    color: #00ffb4;
    text-shadow: 0 0 6px #00ffb4;
}

.cls {
    color: #7ad7ff;
    text-shadow: 0 0 6px #7ad7ff;
}

.tags {
    padding: 12px 20px;
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.08);
}

.ai {
    color: #00d4ff;
}

.bots {
    color: #00ff88;
}
