:root {
    --color-cyan: #00D1FF;
    --color-mint: #ADFFED;
    --color-lime: #E4FF36;
    --color-purple: #E077FF;
    --color-dark: #1a1a1a;
    --color-gray: #666;
}

/* Hero Section */
.board-hero {
    background: #1a1a1a;
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-cyan);
    top: -150px;
    right: -100px;
    animation: float-shape 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-purple);
    bottom: -100px;
    left: -80px;
    animation: float-shape 15s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-mint);
    top: 40%;
    right: 25%;
    animation: float-shape 18s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 209, 255, 0.1);
    border: 2px solid var(--color-cyan);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.hero-badge img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.hero-badge span {
    color: var(--color-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.board-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    color: white;
    background: linear-gradient(135deg, #fff 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Board Section */
.board-section {
    padding: 100px 20px;
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.board-intro {
    text-align: center;
    margin-bottom: 80px;
}

.board-intro h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.board-intro p {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.board-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.board-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.member-image {
    width: 100%;
    height: 100%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.board-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.board-member:hover .member-overlay {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    transform: translateY(-3px);
}

.member-info {
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.member-role {
    font-size: 1rem;
    color: var(--color-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-height: 100px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar */
.member-bio::-webkit-scrollbar {
    width: 6px;
}

.member-bio::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.member-bio::-webkit-scrollbar-thumb {
    background: var(--color-cyan);
    border-radius: 10px;
}

.member-bio::-webkit-scrollbar-thumb:hover {
    background: #00a8cc;
}

.member-bio {
    scrollbar-width: thin;
    scrollbar-color: var(--color-cyan) #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
    .board-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .board-intro h2 {
        font-size: 2rem;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .member-info {
        min-height: auto;
    }
    
    .member-bio {
        max-height: 120px;
    }
}