/* Addon Guide Page Styles */
.addon-guide-container {
    padding: 2rem;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.addon-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(20, 20, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.addon-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d4d, #b30000);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.guide-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(30, 30, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.guide-section h2 {
    color: #ffd700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

.guide-text-content {
    font-size: 1.1rem;
}

.guide-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.guide-image-container:hover {
    transform: scale(1.02);
}

.guide-image-container img {
    width: 100%;
    display: block;
}

.image-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #ffd700;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.limitations-list {
    list-style: none;
    padding: 0;
}

.limitations-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 77, 77, 0.05);
    border-left: 4px solid #ff4d4d;
    border-radius: 0 8px 8px 0;
}

.limitations-list li strong {
    color: #ff4d4d;
    display: block;
    margin-bottom: 0.2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #ffd700;
}

.step-card h3 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Glassmorphism utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
