.ai-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid #E8E8E8;
    overflow: hidden;
}

.ai-content-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-bottom: 1px solid #E8E8E8;
}

.ai-content-header h2 {
    margin: 0;
    font-size: 2em;
    color: #3D5A6C;
    font-weight: 600;
}

.ai-content-header p {
    margin: 10px 0 0;
    font-size: 0.95em;
    color: #6A8AAA;
}

.ai-image-wrapper {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8E8E8;
}

.ai-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-content-actions {
    margin-top: 30px;
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ai-content-btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-block;
    min-width: 120px;
}

.ai-content-btn.primary {
    background: linear-gradient(180deg, #6A8AAA 0%, #5A7A9A 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ai-content-btn.primary:hover {
    background: linear-gradient(180deg, #5A7A9A 0%, #4A6A8A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ai-content-btn.secondary {
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    color: #5A7A9A;
    border: 1px solid #D0D0D0;
}

.ai-content-btn.secondary:hover {
    background: linear-gradient(135deg, #E8F0F5 0%, #D8E8F0 100%);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .ai-content-container {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .ai-content-header h2 {
        font-size: 1.5em;
    }

    .ai-content-header p {
        font-size: 0.9em;
    }

    .ai-image-wrapper {
        padding: 15px;
        border-radius: 10px;
    }

    .ai-content-actions {
        flex-direction: column;
        align-items: center;
    }

    .ai-content-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .ai-content-container {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .ai-content-header h2 {
        font-size: 1.3em;
    }

    .ai-image-wrapper {
        padding: 10px;
    }
}