* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #0a0000;
    background-image:
        linear-gradient(to bottom, rgba(255, 0, 85, 0.02) 1px, transparent 1px),
        linear-gradient(to right, rgba(255, 0, 85, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #ff0055;
    overflow-x: hidden;
    line-height: 1.6;
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px solid #ff0055;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(20, 0, 10, 0.45), rgba(40, 0, 20, 0.45));
    box-shadow:
        0 0 30px rgba(255, 0, 85, 0.4),
        0 0 60px rgba(255, 0, 85, 0.2),
        inset 0 0 30px rgba(255, 0, 85, 0.05);
    border-radius: 2px;
}

.logo {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow:
        0 0 10px #ff0055,
        0 0 20px #ff0055,
        0 0 40px #ff0055,
        0 0 80px #ff0055;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow:
            0 0 10px #ff0055,
            0 0 20px #ff0055,
            0 0 40px #ff0055;
    }
    50% {
        text-shadow:
            0 0 15px #ff0055,
            0 0 30px #ff0055,
            0 0 60px #ff0055,
            0 0 90px #ff0055;
    }
}

.bracket {
    color: #ff0055;
    font-size: 1.2em;
}

.team-name {
    color: #ff0055;
    letter-spacing: 8px;
}

.tagline {
    font-size: 1.2em;
    color: #ff3377;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 0, 5, 0.5), rgba(30, 0, 15, 0.5));
    border: 2px solid #ff0055;
    margin-bottom: 30px;
    flex-wrap: wrap;
    box-shadow:
        0 0 20px rgba(255, 0, 85, 0.3),
        inset 0 0 20px rgba(255, 0, 85, 0.05);
}

.nav-link {
    color: #ff0055;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.3);
}

.nav-link:hover {
    border: 1px solid #ff0055;
    background: rgba(255, 0, 85, 0.15);
    box-shadow:
        0 0 15px rgba(255, 0, 85, 0.6),
        inset 0 0 10px rgba(255, 0, 85, 0.1);
    text-shadow:
        0 0 10px #ff0055,
        0 0 20px #ff0055;
    transform: translateY(-2px);
}

.section {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(10, 0, 5, 0.4), rgba(30, 0, 15, 0.4));
    border: 2px solid #ff0055;
    box-shadow:
        0 0 25px rgba(255, 0, 85, 0.3),
        0 0 50px rgba(255, 0, 85, 0.1),
        inset 0 0 20px rgba(255, 0, 85, 0.05);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0055, transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ff0055;
    text-shadow:
        0 0 10px #ff0055,
        0 0 20px #ff0055;
}

.prompt {
    color: #ff3377;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 51, 119, 0.5);
}

.terminal-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(20, 0, 10, 0.35));
    border: 2px solid #cc0033;
    padding: 20px;
    margin-top: 10px;
    box-shadow:
        inset 0 0 20px rgba(255, 0, 85, 0.1),
        0 0 10px rgba(255, 0, 85, 0.2);
}

.terminal-box p {
    margin: 10px 0;
    color: #ff0055;
}

.terminal-box ul {
    list-style: none;
    padding-left: 20px;
}

.terminal-box li {
    margin: 10px 0;
    color: #ff0055;
}

.highlight {
    color: #ff3377;
    font-weight: bold;
    padding: 15px;
    border-left: 4px solid #ff0055;
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.1), transparent);
    margin: 15px 0;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

.status {
    margin-top: 20px;
    color: #ff0055;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 0, 10, 0.4));
    border: 2px solid #cc0033;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 85, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.team-member:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.team-member:hover {
    border-color: #ff0055;
    box-shadow:
        0 0 25px rgba(255, 0, 85, 0.5),
        inset 0 0 20px rgba(255, 0, 85, 0.1);
    transform: translateY(-5px);
}

.team-member.classified {
    border-style: dashed;
    opacity: 0.7;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

.team-member.classified:hover {
    opacity: 1;
}

.member-header {
    color: #ff3377;
    font-size: 0.9em;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 51, 119, 0.5);
}

.member-name {
    font-size: 1.3em;
    color: #ff0055;
    margin-bottom: 10px;
    text-shadow:
        0 0 10px #ff0055,
        0 0 20px #ff0055;
}

.member-role {
    color: #cc0033;
    font-size: 0.95em;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 0, 10, 0.4));
    border: 2px solid #cc0033;
    transition: all 0.3s ease;
}

.client-item:hover {
    border-color: #ff0055;
    box-shadow:
        0 0 20px rgba(255, 0, 85, 0.4),
        inset 0 0 15px rgba(255, 0, 85, 0.1);
    transform: translateX(5px);
}

.client-icon {
    color: #ff0055;
    font-size: 1.5em;
    min-width: 40px;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.client-name {
    color: #ff0055;
    font-weight: bold;
}

.service-detailed {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin: 15px 0;
    border: 2px solid #cc0033;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 0, 10, 0.4));
    transition: all 0.3s ease;
    position: relative;
}

.service-detailed::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff0055, #cc0033, #ff0055);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detailed:hover::after {
    opacity: 1;
}

.service-detailed:hover {
    border-color: #ff0055;
    box-shadow:
        0 0 25px rgba(255, 0, 85, 0.4),
        inset 0 0 20px rgba(255, 0, 85, 0.05);
    transform: translateX(5px);
}

.service-number {
    color: #ff0055;
    font-size: 1.8em;
    font-weight: bold;
    min-width: 50px;
    text-shadow:
        0 0 10px #ff0055,
        0 0 20px #ff0055;
}

.service-content {
    flex: 1;
}

.service-title {
    color: #ff0055;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
}

.service-description {
    color: #ff3377;
    line-height: 1.6;
}

.contact-info {
    margin-top: 20px;
}

.contact-line {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    margin: 15px 0;
    padding: 15px;
    border-left: 3px solid #ff0055;
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.1), transparent);
    transition: all 0.3s ease;
}

.contact-line:hover {
    border-left-color: #ff0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3);
    padding-left: 20px;
}

.contact-label {
    color: #ff3377;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 51, 119, 0.5);
}

.contact-value {
    color: #ff0055;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
}

.contact-value a {
    color: #ff0055;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
    transition: all 0.3s ease;
}

.contact-value a:hover {
    color: #ff3377;
    text-shadow:
        0 0 10px #ff0055,
        0 0 20px #ff0055;
}

.blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
        text-shadow: 0 0 10px #ff0055;
    }
    50%, 100% {
        opacity: 0.3;
        text-shadow: none;
    }
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 3px solid #ff0055;
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(10, 0, 5, 0.5), rgba(30, 0, 15, 0.5));
    box-shadow:
        0 0 30px rgba(255, 0, 85, 0.3),
        inset 0 0 20px rgba(255, 0, 85, 0.05);
}

.footer-content p {
    margin: 10px 0;
    color: #ff3377;
}

.footer-note {
    font-size: 0.9em;
    opacity: 0.8;
    text-shadow: 0 0 3px rgba(255, 0, 85, 0.3);
}

@media (max-width: 768px) {
    .logo {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .service-detailed {
        flex-direction: column;
        gap: 10px;
    }

    .service-number {
        min-width: auto;
    }

    .contact-line {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-left: 1px solid #ff0055;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff0055, #cc0033);
    border: 1px solid #000000;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff0066, #ff0055);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.8);
}
