* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0c0c14;
    --bg-card: #161622;
    --bg-hover: #1e1e30;
    --bg-modal: #13131d;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-terminal: #3eea99;
    --text-terminal-dim: rgba(62, 234, 153, 0.7);

    --accent-purple: #bb86fc;
    --accent-cyan: #03dac6;
    --accent-red: #ff5555;

    --color-osint: #00c3ff;
    --color-forensics: #00ff95;
    --color-pwn: #ff5c8d;
    --color-cryptography: #bd00ff;
    --color-reverse: #ffb700;
    --color-webex: #ffff00;

    --accent-gradient: linear-gradient(135deg, #bb86fc 0%, #703fc8 100%);
    --cyber-gradient: linear-gradient(90deg, #3eea99 0%, #00c3ff 100%);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.4);

    --terminal-font: 'JetBrains Mono', monospace;
    --main-font: 'Outfit', sans-serif;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.05em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }

    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.05em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }

    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

body {
    font-family: var(--main-font);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 25% 25%, rgba(62, 234, 153, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 195, 255, 0.03) 0%, transparent 50%);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0h1L0 6V5zm1 5v1H5z' fill='rgba(255,255,255,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.binary-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.team-header {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 4rem 0 6rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyber-gradient);
}

.terminal-window {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(22, 22, 34, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(62, 234, 153, 0.2);
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(62, 234, 153, 0.1);
}

.terminal-title {
    font-family: var(--terminal-font);
    font-size: 0.9rem;
    color: var(--text-terminal-dim);
    font-weight: 500;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-red {
    background-color: var(--accent-red);
}

.control-yellow {
    background-color: var(--color-reverse);
}

.control-green {
    background-color: var(--text-terminal);
}

.terminal-content {
    font-family: var(--terminal-font);
}

.terminal-line {
    display: flex;
    margin-bottom: 8px;
}

.terminal-prompt {
    color: var(--text-terminal);
    margin-right: 10px;
    flex-shrink: 0;
}

.terminal-text {
    color: var(--text-primary);
    flex: 1;
}

.terminal-typing {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: fit-content;
}

.terminal-typing::after {
    content: "|";
    position: absolute;
    right: -4px;
    animation: cursor-blink 1s infinite;
    color: var(--text-terminal);
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: -60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(62, 234, 153, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-terminal);
    font-family: var(--terminal-font);
    transition: all 0.3s ease;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.counter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.counter.visible {
    opacity: 1;
    transform: translateY(0);
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 3rem;
    max-width: 800px;
    position: relative;
    z-index: 5;
}

.filter-badge {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    user-select: none;
}

.filter-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.filter-badge.active {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.filter-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.filter-badge:hover::before {
    opacity: 0.1;
}

.filter-badge.active::before {
    opacity: 0.2;
}

.filter-all::before {
    background: var(--accent-gradient);
}

.filter-osint::before {
    background: var(--color-osint);
}

.filter-forensics::before {
    background: var(--color-forensics);
}

.filter-pwn::before {
    background: var(--color-pwn);
}

.filter-cryptography::before {
    background: var(--color-cryptography);
}

.filter-reverse::before {
    background: var(--color-reverse);
}

.filter-webex::before {
    background: var(--color-webex);
}

.filter-badge.active.filter-all {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.filter-badge.active.filter-osint {
    border-color: var(--color-osint);
    color: var(--color-osint);
}

.filter-badge.active.filter-forensics {
    border-color: var(--color-forensics);
    color: var(--color-forensics);
}

.filter-badge.active.filter-pwn {
    border-color: var(--color-pwn);
    color: var(--color-pwn);
}

.filter-badge.active.filter-cryptography {
    border-color: var(--color-cryptography);
    color: var(--color-cryptography);
}

.filter-badge.active.filter-reverse {
    border-color: var(--color-reverse);
    color: var(--color-reverse);
}

.filter-badge.active.filter-webex {
    border-color: var(--color-webex);
    color: var(--color-webex);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px;
    background-color: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.team-member.hidden {
    display: none;
}

.team-member.glitch {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both;
}

.team-member.highlight {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(62, 234, 153, 0.3);
    border-color: rgba(62, 234, 153, 0.5);
}

.team-member:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--card-shadow-hover);
    background-color: var(--bg-hover);
}

.team-member::after {
    content: 'Click for details';
    position: absolute;
    bottom: 10px;
    right: 0;
    background: rgba(22, 22, 34, 0.7);
    color: var(--text-terminal);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px 0 0 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    font-family: var(--terminal-font);
}

.team-member:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.skill-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    background: var(--bg-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-indicator.osint {
    color: var(--color-osint);
}

.skill-indicator.forensics {
    color: var(--color-forensics);
}

.skill-indicator.pwn {
    color: var(--color-pwn);
}

.skill-indicator.cryptography {
    color: var(--color-cryptography);
}

.skill-indicator.reverse {
    color: var(--color-reverse);
}

.skill-indicator.webex {
    color: var(--color-webex);
}

.profile-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

.profile-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(62, 234, 153, 0.3);
    z-index: 0;
}

.team-member.osint .profile-circle::before {
    border-color: rgba(0, 195, 255, 0.3);
}

.team-member.forensics .profile-circle::before {
    border-color: rgba(0, 255, 149, 0.3);
}

.team-member.pwn .profile-circle::before {
    border-color: rgba(255, 92, 141, 0.3);
}

.team-member.cryptography .profile-circle::before {
    border-color: rgba(189, 0, 255, 0.3);
}

.team-member.reverse .profile-circle::before {
    border-color: rgba(255, 183, 0, 0.3);
}

.team-member.webex .profile-circle::before {
    border-color: rgba(255, 255, 0, 0.3);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.team-member:hover .profile-circle img {
    transform: scale(1.15);
}

.member-name {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cyber-gradient);
    transition: width 0.3s ease;
}

.team-member:hover .member-name::after {
    width: 100%;
}

.member-role {
    color: var(--text-terminal);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    font-family: var(--terminal-font);
}

.member-desc {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.skill-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-osint {
    background: rgba(0, 195, 255, 0.15);
    color: var(--color-osint);
    border: 1px solid rgba(0, 195, 255, 0.3);
}

.skill-forensics {
    background: rgba(0, 255, 149, 0.15);
    color: var(--color-forensics);
    border: 1px solid rgba(0, 255, 149, 0.3);
}

.skill-pwn {
    background: rgba(255, 92, 141, 0.15);
    color: var(--color-pwn);
    border: 1px solid rgba(255, 92, 141, 0.3);
}

.skill-cryptography {
    background: rgba(189, 0, 255, 0.15);
    color: var(--color-cryptography);
    border: 1px solid rgba(189, 0, 255, 0.3);
}

.skill-reverse {
    background: rgba(255, 183, 0, 0.15);
    color: var(--color-reverse);
    border: 1px solid rgba(255, 183, 0, 0.3);
}

.skill-webex {
    background: rgba(255, 255, 0, 0.15);
    color: var(--color-webex);
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.team-member:hover .skill-badge {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.member-socials {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.member-socials a {
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-socials a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.member-socials a i {
    position: relative;
    z-index: 1;
}

.member-socials a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.member-socials a:hover::before {
    opacity: 1;
}

.member-socials a:hover i {
    color: var(--text-primary);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.profile-modal {
    background: var(--bg-modal);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(62, 234, 153, 0.2);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s ease;
    position: relative;
}

.modal-overlay.active .profile-modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 20px 30px;
    position: relative;
    background: var(--bg-card);
    border-bottom: 3px solid rgba(62, 234, 153, 0.2);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.modal-subtitle {
    color: var(--text-terminal);
    font-family: var(--terminal-font);
    font-size: 1.1rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 85, 85, 0.1);
    color: var(--accent-red);
}

.modal-body {
    padding: 30px;
    max-height: calc(90vh - 160px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(62, 234, 153, 0.2);
    color: var(--text-terminal);
}

.modal-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.achievement-list {
    list-style: none;
}

.achievement-item {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.achievement-item:last-child {
    border-bottom: none;
}

.achievement-item i {
    color: var(--text-terminal);
    margin-right: 12px;
    margin-top: 4px;
}

.tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tool-badge {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-footer {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.simple-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyber-gradient);
}

.simple-footer .container {
    position: relative;
    z-index: 1;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icons a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover::before {
    opacity: 1;
}

.team-achievements {
    margin: 4rem 0;
    padding: 40px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(62, 234, 153, 0.1);
}

.achievements-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
}

.achievements-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--cyber-gradient);
}

.achievements-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.achievement-badge {
    background: rgba(24, 24, 38, 0.7);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.achievement-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--cyber-gradient);
    border-radius: 10px 0 0 10px;
}

.achievement-badge:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.copyright {
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
    font-family: var(--terminal-font);
}

.theme-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.theme-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(62, 234, 153, 0.3);
    color: var(--text-terminal);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.theme-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.theme-button:hover::before {
    opacity: 0.2;
}

.theme-button i {
    position: relative;
    z-index: 1;
}

body.theme-matrix {
    --text-terminal: #00ff00;
    --text-terminal-dim: rgba(0, 255, 0, 0.7);
    --cyber-gradient: linear-gradient(90deg, #00ff00, #003300);
    --accent-gradient: linear-gradient(135deg, #00ff00 0%, #003300 100%);
}

body.theme-cyberpunk {
    --text-terminal: #ff00ff;
    --text-terminal-dim: rgba(255, 0, 255, 0.7);
    --cyber-gradient: linear-gradient(90deg, #ff00ff, #00ffff);
    --accent-gradient: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
}

body.theme-hacker {
    --text-terminal: #ff5555;
    --text-terminal-dim: rgba(255, 85, 85, 0.7);
    --cyber-gradient: linear-gradient(90deg, #ff5555, #ff0000);
    --accent-gradient: linear-gradient(135deg, #ff5555 0%, #ff0000 100%);
}

@media (max-width: 768px) {
    .team-header {
        padding: 3rem 0 4rem;
    }

    .terminal-window {
        margin: 0 20px;
    }

    .terminal-typing {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .team-stats {
        margin-top: -30px;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .filter-controls {
        padding: 0 20px;
        gap: 10px;
    }

    .filter-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }

    .profile-circle {
        width: 130px;
        height: 130px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    .modal-body {
        padding: 20px;
    }

    .theme-switcher {
        bottom: 20px;
        right: 20px;
    }

    .theme-button {
        width: 45px;
        height: 45px;
    }
}

.easter-egg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.easter-egg.active {
    opacity: 1;
    visibility: visible;
}

.easter-egg-content {
    max-width: 500px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--text-terminal);
}

.easter-egg-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-terminal);
    font-family: var(--terminal-font);
}

.easter-egg-message {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.easter-egg-btn {
    background: rgba(62, 234, 153, 0.2);
    color: var(--text-terminal);
    border: 1px solid var(--text-terminal);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--terminal-font);
}

.easter-egg-btn:hover {
    background: rgba(62, 234, 153, 0.3);
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}