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

body {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.6;
    color: #00ff41;
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, #001100 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #003300 0%, transparent 50%),
        linear-gradient(0deg, #000000 0%, #001100 50%, #000000 100%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        rgba(0, 255, 65, 0.01) 1px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: -1;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow:
        0 0 10px #00ff41,
        0 0 20px #00ff41,
        0 0 30px #00ff41,
        0 0 40px #00ff41;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow:
            0 0 10px #00ff41,
            0 0 20px #00ff41,
            0 0 30px #00ff41,
            0 0 40px #00ff41;
    }
    to {
        text-shadow:
            0 0 5px #00ff41,
            0 0 10px #00ff41,
            0 0 15px #00ff41,
            0 0 20px #00ff41;
    }
}

.bg-light {
    background: rgba(0, 20, 0, 0.8);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        rgba(0, 255, 65, 0.02) 1px,
        transparent 2px,
        transparent 20px
    );
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #00ff41;
    box-shadow:
        0 4px 20px rgba(0, 255, 65, 0.3),
        0 0 30px rgba(0, 255, 65, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff41;
}

.nav-brand i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.nav-link {
    text-decoration: none;
    color: #00cc33;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff41;
    box-shadow: 0 0 5px #00ff41;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #00ff41;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px #00ff41;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 20, 0, 0.6) 100%),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(0, 255, 65, 0.1) 1px,
            transparent 2px,
            transparent 100px
        );
    position: relative;
    overflow: hidden;
    color: #00ff41;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    border-top: 1px solid #00ff41;
    border-bottom: 1px solid #00ff41;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top, rgba(0, 255, 65, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated Hero Background Elements */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            rgba(0, 255, 65, 0.05) 1px,
            transparent 2px,
            transparent 50px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            rgba(0, 255, 65, 0.03) 1px,
            transparent 2px,
            transparent 75px
        );
    animation: matrixScroll 15s linear infinite;
    pointer-events: none;
}

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

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.hero-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 204, 51, 0.1) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 7s;
    animation-duration: 18s;
    border: 1px solid rgba(0, 204, 51, 0.2);
}

.hero-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.15) 0%, transparent 70%);
    top: 30%;
    right: 30%;
    animation-delay: 3s;
    animation-duration: 22s;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.hero-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.08) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: 12s;
    animation-duration: 16s;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

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

.hero-geometric::before {
    content: '> INITIALIZING SECURITY PROTOCOL...';
    position: absolute;
    top: 15%;
    right: 10%;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    text-shadow: 0 0 10px #00ff41;
    animation: typewriter 4s steps(35) infinite;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    border-right: 2px solid #00ff41;
}

@keyframes typewriter {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

.hero-geometric::after {
    content: '[SECURE SHELL ACTIVATED]';
    position: absolute;
    bottom: 25%;
    left: 15%;
    color: #00cc33;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    text-shadow: 0 0 5px #00cc33;
    animation: blink 2s infinite;
    border: 1px solid #00cc33;
    padding: 5px 10px;
    background: rgba(0, 204, 51, 0.1);
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-icon-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.hero-tech-icon {
    position: absolute;
    font-size: 2rem;
    color: white;
    animation: techFloat 12s ease-in-out infinite;
}

.hero-tech-icon:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-tech-icon:nth-child(2) { top: 15%; right: 20%; animation-delay: 2s; }
.hero-tech-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.hero-tech-icon:nth-child(4) { bottom: 20%; right: 15%; animation-delay: 6s; }
.hero-tech-icon:nth-child(5) { top: 40%; left: 5%; animation-delay: 1s; }
.hero-tech-icon:nth-child(6) { top: 35%; right: 5%; animation-delay: 3s; }

/* Animations */
@keyframes heroFloat {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(0.9); }
    75% { transform: rotate(270deg) scale(1.05); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg); 
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-40px) translateX(-10px) rotate(180deg); 
        opacity: 0.1;
    }
    75% { 
        transform: translateY(-20px) translateX(5px) rotate(270deg); 
        opacity: 0.12;
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.15;
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.25;
    }
}

@keyframes techFloat {
    0%, 100% { 
        transform: translateY(0px); 
        opacity: 0.05;
    }
    50% { 
        transform: translateY(-15px); 
        opacity: 0.1;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow:
        0 0 10px #00ff41,
        0 0 20px #00ff41,
        0 0 30px #00ff41;
    animation: fadeInUp 1s ease, hackerGlow 3s ease-in-out infinite;
}

@keyframes hackerGlow {
    0%, 100% {
        text-shadow:
            0 0 10px #00ff41,
            0 0 20px #00ff41,
            0 0 30px #00ff41;
    }
    50% {
        text-shadow:
            0 0 15px #00ff41,
            0 0 25px #00ff41,
            0 0 35px #00ff41,
            0 0 40px #00ff41;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 50px;
    color: #00cc33;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
    border-left: 3px solid #00cc33;
    padding-left: 15px;
    display: inline-block;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff41;
    text-shadow:
        0 0 10px #00ff41,
        0 0 20px #00ff41;
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    from {
        text-shadow:
            0 0 10px #00ff41,
            0 0 20px #00ff41;
    }
    to {
        text-shadow:
            0 0 15px #00ff41,
            0 0 25px #00ff41,
            0 0 30px #00ff41;
    }
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #00cc33;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff41;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow:
        0 0 20px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s;
}

.overview-card:hover::before {
    left: 100%;
}

.overview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 0 30px rgba(0, 255, 65, 0.5),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
    border-color: #00ff41;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow:
        0 0 20px rgba(0, 255, 65, 0.5),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
    animation: iconFlicker 4s ease-in-out infinite;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff41, #00cc33, #00ff41);
    z-index: -1;
    animation: borderScan 3s linear infinite;
}

@keyframes iconFlicker {
    0%, 98%, 100% { opacity: 1; }
    99% { opacity: 0.8; }
}

@keyframes borderScan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-icon i {
    font-size: 2rem;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff41;
}

.overview-card p {
    color: #00cc33;
    line-height: 1.6;
    opacity: 0.9;
}

/* Challenges Section */
.challenges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.challenge-card {
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 0;
    box-shadow:
        0 0 20px rgba(255, 51, 51, 0.3),
        inset 0 0 20px rgba(255, 51, 51, 0.05);
    border: 2px solid #ff3333;
    border-left: 5px solid #ff3333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '[ THREAT DETECTED ]';
    position: absolute;
    top: 5px;
    right: 10px;
    color: #ff3333;
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px #ff3333;
    animation: blink 2s infinite;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: #ff5555;
    box-shadow:
        0 0 30px rgba(255, 51, 51, 0.5),
        inset 0 0 30px rgba(255, 51, 51, 0.1);
}

.challenge-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.challenge-header i {
    font-size: 1.5rem;
    color: #ff3333;
    margin-right: 15px;
    text-shadow: 0 0 10px #ff3333;
    animation: dangerPulse 2s ease-in-out infinite;
}

@keyframes dangerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.challenge-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff3333;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #ff3333;
}

.challenge-card p {
    color: #ff6666;
    margin-bottom: 20px;
    opacity: 0.9;
}

.challenge-impact {
    background: rgba(255, 51, 51, 0.1);
    padding: 15px;
    border-radius: 0;
    border: 1px solid rgba(255, 51, 51, 0.3);
    position: relative;
}

.challenge-impact::before {
    content: '> ';
    color: #ff3333;
    font-weight: bold;
    margin-right: 5px;
}

.impact-label {
    font-weight: 600;
    color: #ff3333;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px #ff3333;
}

.impact-text {
    color: #ff6666;
    opacity: 0.9;
}

/* Solutions Section */
.solution-block {
    margin-bottom: 60px;
}

.solution-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff41;
}

.solution-title i {
    margin-right: 15px;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    animation: iconPulse 3s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.9);
    padding: 25px;
    border-radius: 0;
    box-shadow:
        0 0 15px rgba(0, 255, 65, 0.2),
        inset 0 0 15px rgba(0, 255, 65, 0.05);
    border: 1px solid #00cc33;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff41, #00cc33, #00ff41);
    animation: loadingBar 3s ease-in-out infinite;
}

@keyframes loadingBar {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

.feature-card:hover {
    border-color: #00ff41;
    box-shadow:
        0 0 25px rgba(0, 255, 65, 0.4),
        inset 0 0 25px rgba(0, 255, 65, 0.1);
    transform: translateY(-5px);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #00ff41;
}

.feature-card p {
    color: #00cc33;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Playbooks Section */
.playbooks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.playbook-card {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 0;
    border: 2px solid #00ff41;
    box-shadow:
        0 0 20px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.playbook-card::before {
    content: '[EXECUTING...]';
    position: absolute;
    top: 10px;
    right: 15px;
    color: #00ff41;
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    text-shadow: 0 0 10px #00ff41;
}

.playbook-card:hover::before {
    opacity: 1;
    animation: blink 1s infinite;
}

.playbook-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ff41;
    box-shadow:
        0 0 30px rgba(0, 255, 65, 0.5),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.playbook-header {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 255, 65, 0.1) 100%),
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            rgba(0, 255, 65, 0.05) 1px,
            transparent 2px,
            transparent 10px
        );
    color: #00ff41;
    padding: 25px;
    text-align: center;
    border-bottom: 2px solid #00ff41;
    position: relative;
}

.playbook-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #00ff41;
    box-shadow: 0 0 10px #00ff41;
}

.playbook-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    animation: iconScan 4s ease-in-out infinite;
}

.playbook-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff41, #00cc33, #00ff41);
    z-index: -1;
    animation: borderRotate 2s linear infinite;
}

@keyframes iconScan {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 65, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 65, 0.8), 0 0 30px rgba(0, 255, 65, 0.3); }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.playbook-icon i {
    font-size: 1.5rem;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    animation: iconPulse 2s ease-in-out infinite;
}

.playbook-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff41;
}

.playbook-description {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.02);
}

.playbook-description p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #00cc33;
}

.playbook-description strong {
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.playbook-steps {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.5);
}

.step {
    position: relative;
    padding: 8px 0 8px 30px;
    color: #00cc33;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    opacity: 0.9;
}

.step:before {
    content: '> ' counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 8px;
    width: 25px;
    height: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff41;
    color: #00ff41;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    box-shadow:
        0 0 10px rgba(0, 255, 65, 0.5),
        inset 0 0 10px rgba(0, 255, 65, 0.1);
    text-shadow: 0 0 5px #00ff41;
}

.playbook-card {
    counter-reset: step-counter;
}

.playbook-integrations {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 4px 12px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    box-shadow:
        0 0 10px rgba(0, 255, 65, 0.3),
        inset 0 0 10px rgba(0, 255, 65, 0.05);
    text-shadow: 0 0 5px #00ff41;
    animation: tagGlow 3s ease-in-out infinite alternate;
}

@keyframes tagGlow {
    from {
        box-shadow:
            0 0 10px rgba(0, 255, 65, 0.3),
            inset 0 0 10px rgba(0, 255, 65, 0.05);
    }
    to {
        box-shadow:
            0 0 15px rgba(0, 255, 65, 0.5),
            inset 0 0 15px rgba(0, 255, 65, 0.1);
    }
}

/* Metrics Section */
.metrics-container {
    max-width: 1000px;
    margin: 0 auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.metric-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-card.primary {
    border-top: 5px solid;
    border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%) 1;
}

.metric-card.secondary {
    border-top: 5px solid;
    border-image: linear-gradient(135deg, #764ba2 0%, #c471ed 100%) 1;
}

.metric-card.accent {
    border-top: 5px solid;
    border-image: linear-gradient(135deg, #c471ed 0%, #f093fb 100%) 1;
}

.metric-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.metric-card.primary .metric-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.metric-card.secondary .metric-icon {
    background: linear-gradient(135deg, #764ba2 0%, #c471ed 100%);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.3);
}

.metric-card.accent .metric-icon {
    background: linear-gradient(135deg, #c471ed 0%, #f093fb 100%);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.3);
}

.metric-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.metric-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.metric-improvement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.metric-improvement i {
    color: #667eea;
}

.benefits-section {
    text-align: center;
}

.benefits-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Best Practices Section */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.practice-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-5px);
}

.practice-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.practice-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 15px;
    color: #2c3e50;
}

.practice-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Search Container */
.search-container {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
}

.search-container input {
    width: 300px;
    padding: 12px 40px 12px 15px;
    border: 2px solid #00ff41;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.9);
    color: #00ff41;
    box-shadow:
        0 0 15px rgba(0, 255, 65, 0.3),
        inset 0 0 15px rgba(0, 255, 65, 0.05);
    text-shadow: 0 0 5px #00ff41;
}

.search-container input::placeholder {
    color: #006633;
    opacity: 0.7;
}

.search-container input:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow:
        0 0 25px rgba(0, 255, 65, 0.5),
        inset 0 0 25px rgba(0, 255, 65, 0.1);
    text-shadow: 0 0 10px #00ff41;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Footer */
.footer {
    background:
        rgba(0, 0, 0, 0.95),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(0, 255, 65, 0.05) 1px,
            transparent 2px,
            transparent 50px
        );
    border-top: 2px solid #00ff41;
    color: #00ff41;
    text-align: center;
    padding: 40px 0;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-shape {
        display: none;
    }
    
    .hero-geometric::before,
    .hero-geometric::after {
        display: none;
    }
    
    .hero-tech-icon {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .search-container {
        position: static;
        margin: 20px;
        transform: none;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .overview-grid,
    .challenges-container,
    .features-grid,
    .playbooks-container,
    .metrics-grid,
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-card,
    .challenge-card,
    .feature-card,
    .playbook-card,
    .metric-card,
    .practice-card {
        padding: 20px;
    }
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 14px;
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
    animation: matrixFall linear infinite;
    white-space: nowrap;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Additional hacker-style glitch effects */
.glitch {
    animation: glitch 2s linear infinite;
}

@keyframes glitch {
    2%, 64% {
        transform: translate(2px, 0) skew(0deg);
    }
    4%, 60% {
        transform: translate(-2px, 0) skew(0deg);
    }
    62% {
        transform: translate(0, 0) skew(5deg);
    }
}

.scan-line {
    position: relative;
    overflow: hidden;
}

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

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

/* Terminal cursor effect */
.terminal-cursor::after {
    content: '█';
    color: #00ff41;
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Code lines effect for playbooks */
.code-line {
    font-family: 'Courier New', monospace;
    color: #00cc33;
    position: relative;
    overflow: hidden;
}

.code-line::before {
    content: '$ ';
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Highlight search results */
.highlight {
    background: rgba(0, 255, 65, 0.3);
    color: #000000;
    padding: 2px 4px;
    border-radius: 0;
    border: 1px solid #00ff41;
    box-shadow:
        0 0 10px rgba(0, 255, 65, 0.5),
        inset 0 0 10px rgba(0, 255, 65, 0.2);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        background: rgba(0, 255, 65, 0.3);
    }
    50% {
        background: rgba(0, 255, 65, 0.5);
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Interactive states */
.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable:hover {
    transform: scale(1.02);
}

/* Tooltips */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    box-shadow:
        0 0 15px rgba(0, 255, 65, 0.3),
        inset 0 0 15px rgba(0, 255, 65, 0.05);
    text-shadow: 0 0 5px #00ff41;
}

.tooltip:hover::after {
    opacity: 1;
}
