.thief-article {
    position: relative;
    overflow: hidden;
}

.sneaky-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.se {
    position: absolute;
    font-size: 2rem;
    opacity: 0.12;
    animation: sneakyFloat 18s ease-in-out infinite;
}

.se-1 { left: 5%; top: 15%; animation-delay: 0s; }
.se-2 { right: 8%; top: 30%; animation-delay: 3s; }
.se-3 { left: 12%; top: 55%; animation-delay: 6s; }
.se-4 { right: 5%; top: 70%; animation-delay: 9s; }
.se-5 { left: 3%; top: 85%; animation-delay: 12s; }

@keyframes sneakyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 0.2; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.15; }
    75% { transform: translateY(-25px) rotate(8deg); opacity: 0.2; }
}

.stealth-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sl {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    animation: stealthPulse 5s ease-in-out infinite;
}

.sl-1 {
    top: 25%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.sl-2 {
    top: 75%;
    left: 0;
    width: 100%;
    animation-delay: 2.5s;
}

@keyframes stealthPulse {
    0%, 100% { opacity: 0.2; transform: scaleX(0.4); }
    50% { opacity: 0.5; transform: scaleX(1); }
}

.thief-article .tool-detail-content {
    position: relative;
    z-index: 1;
}

.thief-header {
    position: relative;
}

.header-sneak {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    animation: sneakPeek 4s ease-in-out infinite;
}

@keyframes sneakPeek {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(-20px); opacity: 1; }
}

.badge-fish {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    animation: fishBadge 2s ease-in-out infinite;
}

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

.badge-cross {
    background: linear-gradient(135deg, #2196F3, #1976D2) !important;
}

.tool-disclaimer {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #ff9800;
    display: inline-block;
}

.dark-theme .tool-disclaimer {
    background: rgba(255, 193, 7, 0.2);
}

.intro-funny {
    position: relative;
}

.funny-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.dark-theme .funny-date {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    color: rgba(220, 220, 225, 0.65);
}

.fd-icon {
    font-size: 1.2rem;
}

.story-funny {
    padding: 1.5rem;
    background: rgba(108, 117, 125, 0.03);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4CAF50;
}

.dark-theme .story-funny {
    background: rgba(255, 255, 255, 0.03);
}

.sf-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fishSwim 2s ease-in-out infinite;
}

@keyframes fishSwim {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(10px) rotate(5deg); }
    75% { transform: translateX(-10px) rotate(-5deg); }
}

.story-funny p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.story-funny p:last-child {
    margin-bottom: 0;
}

.disclaimer-funny {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px dashed rgba(255, 152, 0, 0.4);
}

.dark-theme .disclaimer-funny {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.12), rgba(255, 152, 0, 0.05));
}

.df-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: warningPulse 1.5s ease-in-out infinite;
}

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

.df-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.df-content p:first-child {
    margin-bottom: 0.25rem;
}

.discovery-funny {
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    overflow: hidden;
}

.dark-theme .discovery-funny {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(76, 175, 80, 0.05));
}

.df-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: dfGlow 5s ease-in-out infinite;
}

@keyframes dfGlow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.df-star {
    position: relative;
    font-size: 2rem;
    margin-right: 1rem;
    animation: starTwinkle 1s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.discovery-funny p {
    position: relative;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-emoji {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.fish-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.fm-card {
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(108, 117, 125, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.dark-theme .fm-card {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.1);
}

.fm-card:hover {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.15);
}

.fm-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    animation: emojiWiggle 2s ease-in-out infinite;
}

@keyframes emojiWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.fm-card:nth-child(2) .fm-emoji { animation-delay: 0.2s; }
.fm-card:nth-child(3) .fm-emoji { animation-delay: 0.4s; }
.fm-card:nth-child(4) .fm-emoji { animation-delay: 0.6s; }
.fm-card:nth-child(5) .fm-emoji { animation-delay: 0.8s; }
.fm-card:nth-child(6) .fm-emoji { animation-delay: 1s; }

.fm-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.fm-card p {
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    color: var(--gray-color);
    line-height: 1.5;
}

.dark-theme .fm-card p {
    color: rgba(220, 220, 225, 0.65);
}

.fm-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    color: #4CAF50;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.dark-theme .fm-tag {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
}

.stealth-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.sf-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(108, 117, 125, 0.03);
    border-radius: 16px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.dark-theme .sf-item {
    background: rgba(255, 255, 255, 0.03);
}

.sf-item:hover {
    transform: translateX(8px);
    background: rgba(76, 175, 80, 0.05);
}

.sfi-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sfi-icon i {
    font-size: 1.25rem;
    color: #4CAF50;
}

.sfi-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.sfi-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.dark-theme .sfi-content p {
    color: rgba(220, 220, 225, 0.65);
}

.stealth-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(33, 150, 243, 0.03));
    border-radius: 12px;
    border-left: 4px solid #2196F3;
    margin-top: 1rem;
}

.dark-theme .stealth-tip {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
}

.st-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stealth-tip p {
    margin: 0;
    line-height: 1.6;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.pc-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(108, 117, 125, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dark-theme .pc-card {
    background: rgba(255, 255, 255, 0.03);
}

.pc-card:hover {
    background: rgba(76, 175, 80, 0.08);
    transform: translateY(-4px);
}

.pc-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.pc-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.pc-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.dark-theme .pc-card p {
    color: rgba(220, 220, 225, 0.65);
}

.pc-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
}

.vscode-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.05), rgba(108, 117, 125, 0.02));
    border-radius: 16px;
    margin: 1rem 0;
    border: 1px solid rgba(108, 117, 125, 0.1);
}

.dark-theme .vscode-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.1);
}

.vf-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vf-icon i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.vf-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.vf-content p {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.dark-theme .vf-content p {
    color: rgba(220, 220, 225, 0.65);
}

.vf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vf-link:hover {
    color: #45a049;
}

.tech-specs-funny {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.tsf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(108, 117, 125, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dark-theme .tsf-item {
    background: rgba(255, 255, 255, 0.03);
}

.tsf-item:hover {
    background: rgba(76, 175, 80, 0.08);
}

.tsf-item i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.tsf-info {
    display: flex;
    flex-direction: column;
}

.tsf-label {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.dark-theme .tsf-label {
    color: rgba(220, 220, 225, 0.65);
}

.tsf-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.thief-download {
    position: relative;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.03));
    border: 2px dashed rgba(76, 175, 80, 0.3);
}

.dark-theme .thief-download {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
}

.download-funny-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.dark-theme .download-funny-text {
    color: rgba(220, 220, 225, 0.65);
}

.download-funny-text span {
    font-size: 1.5rem;
}

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

.ending-funny {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.03));
    border-radius: 20px;
    border: 2px dashed rgba(76, 175, 80, 0.3);
}

.dark-theme .ending-funny {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
}

.ending-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fishSwim 2s ease-in-out infinite;
}

.ending-funny h3 {
    margin-bottom: 1rem;
}

.ending-funny p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.ending-quote {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 12px;
    display: inline-block;
}

.dark-theme .ending-quote {
    background: rgba(255, 255, 255, 0.05);
}

.eq-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ending-quote p {
    margin: 0;
    font-style: italic;
}

.ending-warning {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.dark-theme .ending-warning {
    background: rgba(255, 152, 0, 0.12);
}

.ew-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ending-warning p {
    margin: 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .fish-modes {
        grid-template-columns: 1fr;
    }
    
    .platform-cards {
        grid-template-columns: 1fr;
    }
    
    .tech-specs-funny {
        grid-template-columns: 1fr;
    }
    
    .vscode-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .vf-icon {
        margin: 0 auto;
    }
    
    .sneaky-emojis {
        display: none;
    }
}
