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

.tech-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.03), rgba(200, 16, 46, 0.01));
    pointer-events: none;
    z-index: 0;
}

.dark-theme .tech-decoration {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(200, 16, 46, 0.02));
}

.tech-dec-1 {
    top: 5%;
    right: -100px;
    animation: floatTech 8s ease-in-out infinite;
}

.tech-dec-2 {
    top: 40%;
    left: -150px;
    animation: floatTech 10s ease-in-out infinite reverse;
}

.tech-dec-3 {
    bottom: 10%;
    right: -80px;
    animation: floatTech 12s ease-in-out infinite;
}

@keyframes floatTech {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
}

.circuit-1 {
    top: 20%;
    left: 0;
    right: 0;
    animation: circuitFlow 4s linear infinite;
}

.circuit-2 {
    top: 70%;
    left: 0;
    right: 0;
    animation: circuitFlow 6s linear infinite reverse;
}

@keyframes circuitFlow {
    0% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 0.6; transform: scaleX(1); }
    100% { opacity: 0.3; transform: scaleX(0.5); }
}

.float-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: floatIcon 15s ease-in-out infinite;
}

.dark-theme .float-icon {
    opacity: 0.1;
}

.fi-1 { top: 10%; left: 5%; animation-delay: 0s; }
.fi-2 { top: 25%; right: 8%; animation-delay: 3s; }
.fi-3 { top: 55%; left: 3%; animation-delay: 6s; }
.fi-4 { top: 80%; right: 6%; animation-delay: 9s; }

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

.plugin-article .article-content {
    position: relative;
    z-index: 1;
}

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

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(244, 67, 54, 0.06);
    border-radius: 12px;
    border-left: 3px solid #f44336;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateX(4px);
    background: rgba(244, 67, 54, 0.1);
}

.dark-theme .pain-card {
    background: rgba(244, 67, 54, 0.08);
}

.dark-theme .pain-card:hover {
    background: rgba(244, 67, 54, 0.12);
}

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

.pain-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.dark-theme .pain-card p {
    color: #e5e5e5;
}

.highlight-box {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.08), rgba(200, 16, 46, 0.03));
    border-radius: 16px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.dark-theme .highlight-box {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.12), rgba(200, 16, 46, 0.05));
}

.highlight-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

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

.highlight-box p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.1rem;
}

.transform-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(108, 117, 125, 0.03);
    border-radius: 20px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.dark-theme .transform-diagram {
    background: rgba(255, 255, 255, 0.03);
}

.transform-box {
    padding: 1.5rem;
    border-radius: 16px;
    min-width: 200px;
    text-align: center;
}

.transform-box.before {
    background: rgba(244, 67, 54, 0.08);
    border: 2px dashed rgba(244, 67, 54, 0.3);
}

.dark-theme .transform-box.before {
    background: rgba(244, 67, 54, 0.1);
}

.transform-box.after {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border: 2px solid rgba(76, 175, 80, 0.3);
}

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

.box-header {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.transform-box.before .box-header {
    color: #f44336;
}

.transform-box.after .box-header {
    color: #4CAF50;
}

.box-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.box-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-size: 0.9rem;
}

.dark-theme .box-item {
    background: rgba(255, 255, 255, 0.1);
}

.box-item.negative {
    color: #f44336;
}

.box-item.positive {
    color: #4CAF50;
}

.box-item.hero {
    font-size: 1.1rem;
    font-weight: 700;
}

.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.dark-theme .transform-arrow {
    color: #c8102e;
}

.transform-arrow i {
    font-size: 1.5rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

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

.install-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(33, 150, 243, 0.05);
    border-radius: 16px;
    border-left: 4px solid #2196F3;
    transition: all 0.3s ease;
}

.install-step:hover {
    transform: translateX(8px);
    background: rgba(33, 150, 243, 0.08);
}

.dark-theme .install-step {
    background: rgba(33, 150, 243, 0.08);
}

.dark-theme .install-step:hover {
    background: rgba(33, 150, 243, 0.12);
}

.install-num {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.install-content p {
    margin: 0;
    font-size: 1rem;
}

.install-content code {
    background: rgba(108, 117, 125, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.dark-theme .install-content code {
    background: rgba(255, 255, 255, 0.15);
    color: #c8102e;
}

.install-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-color);
    font-style: italic;
}

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

.ready-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(156, 39, 176, 0.05));
    border-radius: 16px;
    margin-top: 1.5rem;
    border: 1px dashed rgba(156, 39, 176, 0.3);
}

.dark-theme .ready-box {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.12), rgba(156, 39, 176, 0.05));
}

.ready-box span {
    font-size: 2rem;
    animation: rocketBounce 1s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-5px) rotate(-45deg); }
}

.ready-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #9c27b0;
}

.plugin-section {
    padding: 2rem;
    background: rgba(108, 117, 125, 0.02);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(108, 117, 125, 0.08);
    position: relative;
    overflow: hidden;
}

.dark-theme .plugin-section {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

.plugin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dark-theme .plugin-section::before {
    background: linear-gradient(90deg, #c8102e, #e61c3a);
}

.plugin-section:hover::before {
    opacity: 1;
}

.plugin-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.plugin-num {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dark-theme .plugin-num {
    background: linear-gradient(135deg, #c8102e, #e61c3a);
}

.plugin-header h2 {
    margin: 0 !important;
    padding-left: 0 !important;
    flex: 1;
    min-width: 200px;
}

.plugin-header h2::before {
    display: none !important;
}

.plugin-badge {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.plugin-badge.hot {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.dark-theme .plugin-badge.hot {
    background: rgba(244, 67, 54, 0.15);
}

.plugin-badge.new {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.dark-theme .plugin-badge.new {
    background: rgba(76, 175, 80, 0.15);
}

.plugin-badge.pro {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.dark-theme .plugin-badge.pro {
    background: rgba(156, 39, 176, 0.15);
}

.plugin-badge.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.dark-theme .plugin-badge.warning {
    background: rgba(255, 152, 0, 0.15);
}

.plugin-intro {
    display: flex;
    align-items: center;
    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;
    margin-bottom: 1.5rem;
}

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

.intro-label {
    background: #2196F3;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.plugin-intro p {
    margin: 0;
    font-weight: 500;
}

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

.code-box {
    border-radius: 12px;
    overflow: hidden;
}

.code-box.before-code {
    background: rgba(244, 67, 54, 0.05);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.dark-theme .code-box.before-code {
    background: rgba(244, 67, 54, 0.08);
}

.code-box.after-code {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.dark-theme .code-box.after-code {
    background: rgba(76, 175, 80, 0.08);
}

.code-label {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.code-box.before-code .code-label {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.code-box.after-code .code-label {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.code-content {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
}

.ad-block {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.content-block {
    background: rgba(33, 150, 243, 0.15);
    color: #2196F3;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.content-block.full {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    flex: 1;
    text-align: center;
}

.plugin-tip {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.03));
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid #ffc107;
}

.dark-theme .plugin-tip {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
}

.plugin-tip h4 {
    margin: 0 0 0.5rem 0;
    color: #ff9800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plugin-tip p {
    margin: 0;
}

.plugin-target {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.dark-theme .plugin-target {
    background: rgba(255, 255, 255, 0.05);
}

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

.plugin-target p {
    margin: 0;
}

.grammar-demo {
    padding: 1.5rem;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 16px;
    margin: 1.5rem 0;
}

.dark-theme .grammar-demo {
    background: rgba(255, 255, 255, 0.05);
}

.grammar-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 1.1rem;
}

.grammar-wrong {
    text-decoration: line-through;
    color: #f44336;
}

.grammar-correct {
    color: #4CAF50;
}

.grammar-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4CAF50;
}

.auto-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.auto-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auto-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(4px);
}

.dark-theme .auto-item {
    background: rgba(76, 175, 80, 0.08);
}

.dark-theme .auto-item:hover {
    background: rgba(76, 175, 80, 0.12);
}

.auto-item i {
    color: #4CAF50;
}

.flow-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 16px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.dark-theme .flow-chart {
    background: rgba(255, 255, 255, 0.05);
}

.flow-node {
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dark-theme .flow-node {
    background: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flow-node:hover {
    transform: translateY(-2px);
}

.flow-node.highlight {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.flow-arrow {
    color: var(--gray-color);
    font-weight: 600;
}

.flow-note {
    text-align: center;
    font-size: 0.9rem;
    color: #4CAF50;
    margin-top: 0.5rem;
}

.translate-demo {
    padding: 1.5rem;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 16px;
    margin: 1.5rem 0;
}

.dark-theme .translate-demo {
    background: rgba(255, 255, 255, 0.05);
}

.translate-original,
.translate-result {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
}

.translate-original {
    background: rgba(33, 150, 243, 0.08);
    margin-bottom: 0.75rem;
}

.dark-theme .translate-original {
    background: rgba(33, 150, 243, 0.1);
}

.translate-result {
    background: rgba(76, 175, 80, 0.08);
}

.dark-theme .translate-result {
    background: rgba(76, 175, 80, 0.1);
}

.lang-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.translate-original .lang-tag {
    background: #2196F3;
    color: white;
}

.translate-result .lang-tag {
    background: #4CAF50;
    color: white;
}

.translate-original p,
.translate-result p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.translate-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
}

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

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

.workflow {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
}

.workflow.manual {
    background: rgba(244, 67, 54, 0.05);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.dark-theme .workflow.manual {
    background: rgba(244, 67, 54, 0.08);
}

.workflow.auto {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.dark-theme .workflow.auto {
    background: rgba(76, 175, 80, 0.08);
}

.workflow-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.workflow.manual .workflow-title {
    color: #f44336;
}

.workflow.auto .workflow-title {
    color: #4CAF50;
}

.workflow-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.workflow-steps span {
    padding: 0.4rem 0.75rem;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 6px;
}

.dark-theme .workflow-steps span {
    background: rgba(255, 255, 255, 0.1);
}

.workflow-steps .repeat {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.workflow-steps .coffee {
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
}

.workflow-steps .done {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

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

.feature-item:hover {
    transform: translateX(4px);
    background: rgba(108, 117, 125, 0.08);
}

.dark-theme .feature-item {
    background: rgba(255, 255, 255, 0.05);
}

.dark-theme .feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.dark-theme .feature-item i {
    color: #c8102e;
}

.feature-item h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

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

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

.proxy-rules {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.proxy-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 10px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
}

.dark-theme .proxy-rule {
    background: rgba(255, 255, 255, 0.05);
}

.rule-site {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 120px;
}

.dark-theme .rule-site {
    color: #c8102e;
}

.rule-arrow {
    color: var(--gray-color);
}

.rule-proxy {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.rule-direct {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.proxy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #2196F3;
    margin-top: 0.5rem;
}

.focus-rules {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.focus-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ff9800;
}

.dark-theme .focus-rule {
    background: rgba(255, 152, 0, 0.08);
}

.focus-rule i {
    color: #ff9800;
    font-size: 1.1rem;
}

.block-demo {
    padding: 1.5rem;
    background: rgba(244, 67, 54, 0.05);
    border-radius: 16px;
    margin: 1.5rem 0;
    text-align: center;
    border: 2px dashed rgba(244, 67, 54, 0.3);
}

.dark-theme .block-demo {
    background: rgba(244, 67, 54, 0.08);
}

.block-header {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f44336;
}

.block-content {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dark-theme .block-content {
    background: #1a1a2e;
}

.block-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.block-content p {
    margin: 0.25rem 0;
}

.block-msg {
    font-weight: 600;
    color: #f44336;
    margin-top: 0.5rem !important;
}

.summary-section {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.05), rgba(108, 117, 125, 0.02));
    padding: 2rem;
    border-radius: 20px;
}

.dark-theme .summary-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.summary-table {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dark-theme .summary-table {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.summary-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
}

.dark-theme .summary-header {
    background: linear-gradient(135deg, #c8102e, #e61c3a);
}

.summary-header span,
.summary-row span {
    padding: 1rem 1.25rem;
    text-align: left;
}

.summary-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    background: white;
    border-bottom: 1px solid rgba(108, 117, 125, 0.1);
    transition: all 0.3s ease;
}

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

.summary-row:last-child {
    border-bottom: none;
}

.summary-row:hover {
    background: rgba(108, 117, 125, 0.05);
}

.dark-theme .summary-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.plugin-name {
    font-weight: 600;
    color: var(--primary-color);
}

.dark-theme .plugin-name {
    color: #c8102e;
}

.plugin-nickname {
    font-style: italic;
    color: var(--gray-color);
}

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

.tech-ending {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.03));
    border: 2px dashed rgba(76, 175, 80, 0.3);
}

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

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

@keyframes rocketLaunch {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
    75% { transform: translateY(-15px) rotate(-3deg); }
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .transform-diagram {
        flex-direction: column;
    }
    
    .transform-arrow {
        transform: rotate(90deg);
    }
    
    .plugin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .plugin-header h2 {
        font-size: 1.4rem !important;
    }
    
    .flow-chart {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .workflow-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .summary-header,
    .summary-row {
        grid-template-columns: 1fr;
    }
    
    .summary-header span,
    .summary-row span {
        padding: 0.75rem 1rem;
    }
    
    .summary-row span:first-child {
        padding-top: 1rem;
    }
    
    .summary-row span:last-child {
        padding-bottom: 1rem;
    }
    
    .tech-decoration {
        width: 150px;
        height: 150px;
    }
    
    .float-icon {
        font-size: 1.5rem;
    }
    
    .plugin-section {
        padding: 1.5rem;
    }
}
