/* ========================================
   ABOUT SECTION (CYBERPUNK TWO-COLUMN)
   ======================================== */

/* Section Header */
.about-header-cyber {
    text-align: center;
    margin-bottom: 60px;
}

.section-path {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--secondary-cyber);
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 210, 255, 0.2);
    display: inline-block;
}

.section-title-main {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-cyber {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-cyber-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.about-content-left {
    padding-right: 20px;
}

.about-title-cyber {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text-cyber {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-text-cyber p {
    margin-bottom: 20px;
}

.about-text-cyber strong {
    color: #fff;
    font-weight: 600;
}

.about-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-tagline .code-symbol {
    color: var(--secondary-cyber);
    margin-right: 10px;
}

.about-tagline strong {
    color: var(--primary-cyber);
}

/* Code Block (Right Side) */
.about-code-block {
    position: relative;
}

.code-window {
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.code-window .window-controls {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-window .window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.code-window .window-controls span:nth-child(2) {
    background: #ffbd2e;
}

.code-window .window-controls span:nth-child(3) {
    background: #27c93f;
}

.code-window pre {
    margin: 0;
    padding: 25px;
    background: transparent;
    overflow-x: auto;
}

.code-window code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #a9b7c6;
}

/* Code Syntax Highlighting */
.code-comment {
    color: #629755;
    font-style: italic;
}

.code-keyword {
    color: #cc7832;
    font-weight: bold;
}

.code-class {
    color: var(--primary-cyber);
    font-weight: bold;
}

.code-function {
    color: #ffc66d;
}

.code-param {
    color: #94558d;
}

.code-string {
    color: #6a8759;
}

.code-number {
    color: #6897bb;
}

/* Responsive */
@media (max-width: 968px) {
    .about-cyber-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-code-block {
        order: 2;
    }

    .about-content-left {
        order: 1;
        padding-right: 0;
    }

    .about-title-cyber {
        font-size: 2rem;
    }

    .code-window {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
}

@media (max-width: 768px) {
    .about-header-cyber {
        margin-bottom: 40px;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .section-subtitle-cyber {
        font-size: 1rem;
    }

    .about-cyber-wrapper {
        gap: 30px;
        padding: 40px 0;
    }

    .about-title-cyber {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-text-cyber {
        font-size: 0.95rem;
    }

    .about-tagline {
        font-size: 0.85rem;
        text-align: center;
    }

    .code-window code {
        font-size: 0.75rem;
    }

    .code-window pre {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .section-title-main {
        font-size: 1.6rem;
    }

    .about-title-cyber {
        font-size: 1.5rem;
    }

    .about-text-cyber {
        font-size: 0.9rem;
    }

    .code-window code {
        font-size: 0.65rem;
    }
}