body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: #333;
}
.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.container ul, .container ol, .container p:has(strong) {
    text-align: left;
    display: inline-block;
}

.container p:has(strong) {
    display: block;
    text-align: left;
}
.warning-badge {
    background: #ff4444;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: block;
    font-weight: bold;
    margin: 0 auto 20px auto;
    text-align: center;
    width: fit-content;
    text-decoration: none;
    transition: background 0.3s ease;
}

.warning-badge:hover {
    background: #e03333;
    color: white;
}
.test-result {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #ff4444;
    margin: 20px 0;
}
.blocklang-link {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 5px;
}
.blocklang-link:hover {
    background: #0056b3;
}
.code-block {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
    margin: 10px 0;
}
/* Screenshot Carousel Styles */
.screenshot-carousel-container {
    text-align: center;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

.screenshot-slide {
    display: none;
    padding: 20px;
    animation: slideIn 0.5s ease-in-out;
}

.screenshot-slide.active {
    display: block;
}

.screenshot-slide img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.screenshot-caption {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #dee2e6;
}

.carousel-btn {
    background: #007bff;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

.dot:hover {
    background: #0056b3;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .screenshot-carousel-container {
        margin: 20px 10px;
    }
    
    .carousel-controls {
        padding: 10px 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Extension Promotion Section */
.promo-section {
    background: white;
    padding: 80px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.promo-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.promo-header {
    margin-bottom: 50px;
}

.promo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.promo-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.store-badges a {
    transition: transform 0.3s ease;
}

.store-badges a:hover {
    transform: scale(1.05);
}

.store-badges img {
    max-width: 150px;
    max-height: 50px;
    height: auto;
    object-fit: contain;
}

.extension-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.extension-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.extension-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.extension-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.extension-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.extension-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 16px;
}

.install-text {
    color: #007bff;
    font-weight: 500;
    font-size: 0.9rem;
}

.promo-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
}

.feature-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.feature-icon {
    color: #ccc;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .store-badges {
        gap: 20px;
    }
    
    .store-badges img {
        max-width: 120px;
        max-height: 40px;
    }
    
    .extension-card {
        padding: 24px 20px;
    }
    
    .promo-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-icon {
        display: none;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Center More Information section */
.more-info {
    text-align: center;
    margin: 40px 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}