/* Sample Post 3 - Cyberpunk/Neon Dark Theme */

/* Cyberpunk Post Styling */
.cyber-post {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #00ff9f;
    font-family: 'Courier New', monospace;
}

.cyber-post h1,
.cyber-post h2,
.cyber-post h3 {
    color: #00ff9f;
    text-shadow: 0 0 10px #00ff9f, 0 0 20px #00ff9f;
}

.cyber-post p {
    color: #e0e0e0;
}

/* Neon Title */
.neon-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: neon-flicker 3s infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Cyber Meta Badges */
.cyber-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.meta-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ff9f;
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.5);
}

/* Cyber Video */
.cyber-video {
    position: relative;
    margin: 40px 0;
}

.cyber-video iframe {
    width: 100%;
    height: 400px;
    border: 3px solid #00ff9f;
    box-shadow: 0 0 30px rgba(0, 255, 159, 0.6);
    border-radius: 10px;
}

.video-label {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #ff006e;
    padding: 5px 15px;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.8rem;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

/* Cyber Intro */
.cyber-intro {
    font-size: 1.2rem;
    background: rgba(0, 255, 159, 0.1);
    padding: 25px;
    border-left: 5px solid #00ff9f;
    border-radius: 5px;
    margin: 30px 0;
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.2);
}

/* Neon Alert */
.neon-alert {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    border: 2px solid #ff006e;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
}

.alert-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.alert-content h3 {
    margin-top: 0;
    color: white;
    text-shadow: 0 0 10px white;
}

.alert-content p {
    color: white;
    margin-bottom: 0;
}

/* Cyber Heading */
.cyber-heading {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 3px solid #00ff9f;
    padding-bottom: 10px;
    text-shadow: 0 0 15px #00ff9f;
}

/* Cyber Table */
.cyber-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff9f;
    box-shadow: 0 0 25px rgba(0, 255, 159, 0.3);
}

.cyber-table th {
    background: linear-gradient(135deg, #00ff9f 0%, #00b4d8 100%);
    color: #0f0c29;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.cyber-table td {
    padding: 15px;
    border-bottom: 1px solid #00ff9f;
    color: #e0e0e0;
}

.cyber-table tbody tr:hover {
    background: rgba(0, 255, 159, 0.1);
}

.status-online {
    color: #00ff9f;
    font-weight: bold;
    text-shadow: 0 0 8px #00ff9f;
}

.status-warning {
    color: #ffd60a;
    font-weight: bold;
    text-shadow: 0 0 8px #ffd60a;
}

.status-offline {
    color: #ff006e;
    font-weight: bold;
    text-shadow: 0 0 8px #ff006e;
}

/* Step Grid */
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.step-card {
    background: rgba(0, 255, 159, 0.05);
    border: 2px solid #00ff9f;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 159, 0.4);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff006e;
    text-shadow: 0 0 15px #ff006e;
    margin-bottom: 15px;
}

.step-card h3 {
    color: #00ff9f;
    margin: 15px 0;
}

.step-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.step-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #00ff9f;
}

/* Terminal Window */
.terminal-window {
    margin: 40px 0;
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #00ff9f;
    box-shadow: 0 0 30px rgba(0, 255, 159, 0.4);
}

.terminal-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background-color: #ff5f56; }
.btn-minimize { background-color: #ffbd2e; }
.btn-maximize { background-color: #27c93f; }

.terminal-title {
    color: #888;
    font-size: 0.9rem;
    flex-grow: 1;
    text-align: center;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
}

.terminal-body pre {
    margin: 0;
    color: #d4d4d4;
}

.terminal-prompt { color: #00ff9f; }
.terminal-success { color: #27c93f; }
.terminal-warning { color: #ffbd2e; }
.terminal-error { color: #ff5f56; }
.terminal-info { color: #00b4d8; }

/* Effects Grid */
.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.effect-card {
    padding: 25px;
    border-radius: 10px;
    border: 2px solid;
}

.effect-card h4 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.effect-card ul {
    list-style: none;
    padding-left: 0;
}

.effect-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.effect-card li:last-child {
    border-bottom: none;
}

.effect-low {
    background: rgba(39, 201, 63, 0.1);
    border-color: #27c93f;
}

.effect-low h4 { color: #27c93f; }

.effect-medium {
    background: rgba(255, 189, 46, 0.1);
    border-color: #ffbd2e;
}

.effect-medium h4 { color: #ffbd2e; }

.effect-high {
    background: rgba(255, 95, 86, 0.1);
    border-color: #ff5f56;
}

.effect-high h4 { color: #ff5f56; }

/* GIF Showcase */
.gif-showcase {
    position: relative;
    margin: 50px 0;
}

.gif-showcase img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid #00ff9f;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 255, 159, 0.6);
}

.gif-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    color: #00ff9f;
    font-weight: bold;
    letter-spacing: 3px;
    border: 2px solid #00ff9f;
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.8);
}

/* Stats Banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    border: 3px solid #00ff9f;
    box-shadow: 0 0 40px rgba(0, 255, 159, 0.5);
}

.banner-stat {
    text-align: center;
}

.banner-value {
    font-size: 4rem;
    font-weight: bold;
    color: #00ff9f;
    text-shadow: 0 0 20px #00ff9f;
    line-height: 1;
}

.banner-label {
    font-size: 1rem;
    color: white;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .cyber-video iframe {
        height: 250px;
    }

    .step-grid,
    .effects-grid {
        grid-template-columns: 1fr;
    }

    .banner-value {
        font-size: 2.5rem;
    }
}