/* Aurora Effect - Integrated into CV Section */
.cv-aurora-section {
    position: relative;
    background: #000 !important;
    overflow: hidden;
}

#aurora-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    /* Cover the title area */
    z-index: 1;
    pointer-events: none;
}

#aurora-canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    filter: blur(25px);
    -webkit-filter: blur(25px);
}

/* CV section inner content */
.cv-aurora-section .inner {
    position: relative;
    z-index: 10;
}

/* White text for all CV content on black background */
.cv-aurora-section,
.cv-aurora-section .inner,
.cv-aurora-section p,
.cv-aurora-section h3,
.cv-aurora-section h4,
.cv-aurora-section li,
.cv-aurora-section th,
.cv-aurora-section td,
.cv-aurora-section a {
    color: #fff !important;
}

.cv-aurora-section table th {
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}

.cv-aurora-section .alt li {
    border-top-color: rgba(255, 255, 255, 0.2) !important;
}

/* About highlights bullet list - Clean minimal styling */
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto 3.5rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 950px;
    text-align: center;
}

.about-highlights li {
    flex: 0 1 260px;
    padding: 1.5rem 1.25rem;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.about-highlights li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.about-highlights strong {
    color: #fff;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.about-highlights li span,
.about-highlights li {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.5;
}

/* Clickable card links */
.about-highlights li a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.about-highlights li a:hover {
    color: inherit;
}

.about-highlights li:has(a):hover,
.about-highlights li.highlight-dropdown:hover {
    cursor: pointer;
}

/* Dropdown menu for AI Pioneer */
.about-highlights li.highlight-dropdown {
    position: relative;
}

.about-highlights .highlight-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 100;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-highlights li.highlight-dropdown:hover .highlight-menu {
    display: block;
}

.about-highlights .highlight-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
}

.about-highlights .highlight-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Aurora-styled CV title */
.aurora-title {
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin: 0 0 1.5rem 0;
    padding-top: 3rem;
    text-shadow: 0 0 30px rgba(134, 234, 231, 0.5);
}

@media screen and (max-width: 736px) {
    #aurora-canvas-container {
        height: 250px;
    }

    .aurora-title {
        font-size: 1.75rem;
        letter-spacing: 0.2em;
        padding-top: 2rem;
    }
}