.team {
    padding: 120px 0;
    background-color: var(--bg-darker);
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.team-member {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.team-member:hover,
.team-member:focus-within {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.2);
    z-index: 2;
}

.team-member-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.team-member-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-profile-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 0, 85, 0.7);
}

.team-profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-color: var(--accent-red);
    border-radius: 50%;
    border: 2px solid var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.member-username {
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
}

.member-role {
    color: #d0d0d0;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.member-quote {
    color: var(--accent-red);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
    min-height: 40px;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 1;
}

.tag {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gray: #2a2a2a;
    --secondary-gray: #3a3a3a;
    --light-gray: #505050;
    --accent-gray: #707070;
    --text-white: #f0f0f0;
    --text-dim: #b0b0b0;
    --accent-cyan: #00f0ff;
    --accent-red: #ff0055;
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--secondary-gray);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-cyan);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-cyan);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.hero-title {
    font-size: 180px;
    font-weight: 900;
    letter-spacing: 20px;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    }
    92% {
        text-shadow: 
            -2px 0 0 var(--accent-cyan),
            2px 0 0 var(--accent-red),
            0 0 30px rgba(0, 240, 255, 0.5);
    }
    94% {
        text-shadow: 
            2px 0 0 var(--accent-cyan),
            -2px 0 0 var(--accent-red),
            0 0 30px rgba(0, 240, 255, 0.5);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--accent-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-line {
    width: 100px;
    height: 2px;
    background: var(--accent-cyan);
    margin: 30px auto;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.hero-description {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 150px 0;
    background: var(--bg-dark);
    position: relative;
}

.section-title {
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-white);
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--primary-gray) 100%);
    padding: 50px 40px;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.about-card p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* Articles Section */
.articles {
    padding: 150px 0;
    background: var(--bg-darker);
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 18px;
    margin-top: -60px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.article-card {
    background: var(--primary-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.article-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.article-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.article-card:hover .article-overlay {
    opacity: 1;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--secondary-gray);
    border-bottom: 1px solid var(--light-gray);
}

.article-category {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    font-weight: 700;
    padding: 5px 15px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 20px;
}

.article-date {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.article-content {
    padding: 40px 30px;
}

.article-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.stat {
    font-size: 14px;
    color: var(--text-dim);
}

.stat strong {
    color: var(--accent-cyan);
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-impact {
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.article-impact.high {
    background: rgba(255, 0, 85, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid var(--secondary-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo .logo-text {
    font-size: 40px;
    font-weight: 900;
    color: var(--accent-cyan);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.footer-logo p {
    color: var(--text-dim);
    margin-top: 15px;
    line-height: 1.8;
}

.footer-links h4,
.footer-info h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 10px;
}

.footer-info p {
    color: var(--text-dim);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-gray);
    color: var(--text-dim);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 120px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 80px;
        letter-spacing: 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 60px;
    }
}
