:root {
    --primary: #8eff54; /* From .title-highlight, .btn-primary, etc. */
    --accent-blue: #7de048; /* From .btn-primary:hover, .arrow-circle:hover */
    --green-400: #8eff54; /* Consistent with --primary */
    --foreground: #fff; /* From .university-title, .bento-title */
    --muted-foreground: #ddd; /* From .hero-bio */
    --text-foreground-90: rgba(255, 255, 255, 0.9); /* Adjusted for light text on dark bg */
    --text-foreground-80: rgba(255, 255, 255, 0.8); /* Adjusted for light text on dark bg */
    --bg-primary-10: rgba(142, 255, 84, 0.1); /* From .btn-primary shadow */
    --bg-accent-blue-10: rgba(125, 224, 72, 0.1); /* Adjusted for accent-blue */
    --border-primary-20: rgba(142, 255, 84, 0.2); /* From .bento-bio border */
    --bg-primary-20: rgba(142, 255, 84, 0.2); /* From .bento-box shadow */
    --bg-dark: #2a2a2a; /* From .bento-box */
    --bg-darker: #1a1a1a; /* From .hero */
    --bg-glass: rgba(42, 42, 42, 0.7); /* Glass effect, inspired by .stats-section */
}

body {
    font-family: 'Roboto', sans-serif; /* From .hero-bio */
    background-color: var(--bg-darker); /* Dark background from .hero */
    color: var(--foreground);
}

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.relative { position: relative; }
.container { max-width: 1280px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.max-w-6xl { max-width: 72rem; }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.grid { display: grid; }
.gap-12 { gap: 3rem; }
.items-center { align-items: center; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.text-lg { font-size: 1.125rem; }
.leading-relaxed { line-height: 1.625; }
.text-foreground-90 { color: var(--text-foreground-90); }
.text-foreground-80 { color: var(--text-foreground-80); }
.glass-card {
    background: var(--bg-glass); /* Translucent glass effect */
    backdrop-filter: blur(10px); /* Blur for glass effect */
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18); /* From .bento-box */
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1), box-shadow 0.3s;
    padding: 20px; /* From .bento-box */
    width: 100%; /* Ensure consistent width */
    box-sizing: border-box;
}
.glass-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px var(--bg-primary-20), 0 2px 8px rgba(0, 0, 0, 0.18); /* From .bento-box:hover */
}
.p-6 { padding: 1.5rem; }
.rounded-xl { border-radius: 20px; } /* From .bento-box */
.text-xl { font-size: 1.25rem; }
.font-semibold { font-weight: 600; } /* From .bento-title */
.mb-6 { margin-bottom: 1.5rem; } /* For spacing below "What I Bring to the Table" */
.text-foreground { color: var(--foreground); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.flex { display: flex; }
.items-start { align-items: flex-start; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.flex-shrink-0 { flex-shrink: 0; }
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Match w-8 */
    height: 32px; /* Match h-8 */
    background-color: var(--bg-primary-20);
    border-radius: 12px;
    font-size: 16px; /* Ensure icon fits */
    line-height: 1; /* Prevent vertical misalignment */
    text-align: center; /* Ensure horizontal centering */
}
.font-medium { font-weight: 500; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted-foreground { color: var(--muted-foreground); }
.mt-1 { margin-top: 0.25rem; }
.bg-gradient-to-r { background: linear-gradient(to right, var(--bg-primary-10), var(--bg-accent-blue-10)); }
.border { border-width: 1px; border-style: solid; }
.border-primary-20 { border-color: var(--border-primary-20); }
.mb-2 { margin-bottom: 0.5rem; }
.code-text { font-family: monospace; }
.ml-1 { margin-left: 0.25rem; }
.p-8 { padding: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.font-mono { font-family: monospace; }
.text-accent-blue { color: var(--accent-blue); }
.ml-4 { margin-left: 1rem; }
.ml-8 { margin-left: 2rem; }
.ml-12 { margin-left: 3rem; }
.text-green-400 { color: var(--green-400); }

/* About Header (Styled like Stats Header) */
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.about-header p {
    font-size: 18px;
    color: #cccccc; /* From .stats-header p */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-header p::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary); /* #8eff54 */
    margin: 25px auto 0;
    border-radius: 2px;
}

.about-header .section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.about-header .section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--foreground); /* #fff */
    white-space: nowrap;
}

.about-header .title-tag {
    background: var(--primary); /* #8eff54 */
    color: var(--bg-darker); /* #1a1a1a */
    font-size: 16px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 15px;
    margin-left: 0;
    margin-right: 0;
    letter-spacing: 1px;
    display: inline-block;
}

/* Mobile Frame for Code-Style Bio */
.mobile-frame {
    position: relative;
    background: var(--bg-glass); /* Glass effect */
    backdrop-filter: blur(10px); /* Glass blur */
    border-radius: 20px; /* Match other cards */
    overflow: hidden;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Responsive adjustments for tablets */
@media (max-width: 1100px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 4vw;
    }
    .about-header .section-title h2 {
        font-size: 28px;
    }
    .about-header p {
        font-size: 16px;
    }
}

/* Full Mobile Compatibility */
@media (max-width: 768px) {
    .grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 2vw;
    }
    .glass-card {
        padding: 12px 8px;
        border-radius: 16px;
        width: 355px; /* Match mobile-frame width */
        margin: 0 auto; /* Center cards */
    }
    .p-6 { padding: 10px 8px; }
    .p-8 { padding: 10px 8px; }
    .about-header {
        margin-bottom: 30px;
    }
    .about-header .section-title h2 {
        font-size: 24px;
    }
    .about-header p {
        font-size: 14px;
    }
    .about-header p::after {
        margin: 20px auto 0;
    }
    /* Mobile Frame Styling */
    .mobile-frame {
        border-radius: 36px; /* Rounded corners for phone-like appearance */
        border: 2px solid #333; /* Simulate phone bezel */
        background: var(--bg-glass); /* Glass effect for screen */
        backdrop-filter: blur(10px); /* Glass blur */
        padding: 16px;
        position: relative;
        width: 355px; /* Match other cards' width */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        margin: 0 auto; /* Center the card */
    }
    .mobile-frame::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 6px;
        background: #333;
        border-radius: 3px; /* Simulate phone's top speaker/notch */
    }
    .mobile-frame::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: #333;
        border-radius: 50%; /* Simulate home button */
    }
}

@media (max-width: 480px) {
    .about-header .section-title h2 {
        font-size: 22px;
    }
    .about-header .title-tag {
        font-size: 14px;
        padding: 4px 12px;
    }
    .about-header p {
        font-size: 13px;
    }
    .glass-card, .mobile-frame {
        max-width: 355px; /* Ensure consistency */
    }
}