/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* Hero Section Background */
.about-hero {
    background: linear-gradient(135deg, #0A0F1C 0%, #0F1A2E 50%, #0A0F1C 100%);
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(79, 195, 247, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(79, 195, 247, 0.02) 2px, rgba(79, 195, 247, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(79, 195, 247, 0.02) 2px, rgba(79, 195, 247, 0.02) 4px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Profile Container */
.profile-container {
    position: relative;
}

.profile-container::before {
    content: "";
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 12px;
    z-index: -1;
    opacity: 0.7;
}

.profile-container::after {
    content: "";
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 16px;
    z-index: -2;
    opacity: 0.3;
    filter: blur(10px);
}

/* Skill Bars */
.skill-bar {
    height: 8px;
    background: var(--cyber-card);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--cyber-border);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 4px;
    transition: width 2s ease-in-out;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

/* Zone Chart Styles (D3 Pie Chart) */
.zone-arc {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.zone-arc:hover {
    filter: brightness(1.3) drop-shadow(0 0 20px currentColor);
}

.zone-indicator {
    transition: all 0.3s ease;
}

.zone-indicator:hover {
    transform: translateX(4px);
}

/* Day Tooltip */
.day-tooltip {
    background: rgba(26, 35, 50, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(126, 87, 194, 0.5);
    box-shadow: 0 0 20px rgba(126, 87, 194, 0.2),
        inset 0 1px 0 rgba(126, 87, 194, 0.1);
}

/* Quote Section */
.cyber-quote {
    background: linear-gradient(135deg, var(--cyber-card) 0%, rgba(22, 32, 46, 1) 100%);
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, var(--cyber-blue), var(--cyber-purple)) 1;
}

/* Badge Icons */
.badge-icon {
    background: linear-gradient(135deg, var(--cyber-card) 0%, rgba(22, 32, 46, 1) 100%);
    border: 2px solid var(--cyber-border);
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.2);
}

/* About Hero Typing Animation */
.about-typing-wrapper {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(22, 32, 46, 0.6) 100%);
    border: 1px solid var(--cyber-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.about-typing-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
}

.about-typing-prefix {
    color: var(--cyber-purple);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.about-typing-text {
    color: var(--cyber-blue);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

/* Typing Quote Animation */
.typing-quote {
    position: relative;
    min-height: 4.5rem;
}

.typing-quote-text {
    display: inline;
    border-right: 3px solid var(--cyber-blue);
    animation: blink-caret 0.75s step-end infinite;
    padding-right: 0.25rem;
}

.typing-quote-text::before {
    content: '"';
}

@keyframes blink-caret {
    0%, 50% { border-color: var(--cyber-blue); }
    51%, 100% { border-color: transparent; }
}
